From 1d4c6be71f670ff5b372ecd31b6bf6a4dcc6121a Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 8 Sep 2026 16:01:13 +0800 Subject: [PATCH] =?UTF-8?q?fix(mobile):=20=E6=89=8B=E6=9C=BA=E5=85=A8?= =?UTF-8?q?=E5=B1=8F=E5=BC=B9=E7=AA=97=E5=BA=95=E9=83=A8=E8=AE=A9=E5=87=BA?= =?UTF-8?q?TabBar(=E4=B8=8D=E7=9B=96=E5=BA=95=E9=83=A8=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E6=A0=8F,=E7=94=A8=E6=88=B7=E9=9A=8F=E6=97=B6=E5=8F=AF?= =?UTF-8?q?=E7=82=B9Tab=E7=A6=BB=E5=BC=80)+pl-gate=E5=AE=9A=E4=BD=8D?= =?UTF-8?q?=E5=B7=A5=E5=85=B7=E7=B1=BB(=E6=9C=AA=E8=B4=AD=E9=97=A8?= =?UTF-8?q?=E7=A6=81=E9=81=AE=E7=BD=A9=E7=94=A8)(2026-09-08=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E4=B8=89=E6=9D=A1=E8=A6=81=E6=B1=82)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bricks/css/bricks.css | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/bricks/css/bricks.css b/bricks/css/bricks.css index e3ee310..f4a9d8c 100755 --- a/bricks/css/bricks.css +++ b/bricks/css/bricks.css @@ -1112,12 +1112,14 @@ hr { /* ══════════ 手机视口全局规则(<=768px;平板按桌面处理) ══════════ */ @media (max-width: 768px) { /* PopupWindow 全屏化:bricks 弹窗行内 width/height/left/top,用 !important 覆盖。 - * 只针对 .popupwindow —— 普通 .popup(下拉菜单/小提示)保持锚定小窗 */ + * 只针对 .popupwindow —— 普通 .popup(下拉菜单/小提示)保持锚定小窗。 + * 底部让出 TabBar 高度:全屏弹窗不盖住底部标签栏(2026-09-08 用户要求), + * 用户随时可点 Tab 离开弹窗页 */ .popupwindow { width: 100vw !important; max-width: 100vw !important; - height: 100vh !important; - max-height: 100vh !important; + height: calc(100vh - 56px - env(safe-area-inset-bottom, 0px)) !important; + max-height: calc(100vh - 56px - env(safe-area-inset-bottom, 0px)) !important; left: 0 !important; top: 0 !important; border-radius: 0 !important; @@ -1145,3 +1147,14 @@ hr { white-space: normal !important; line-height: 1.5; } + +/* 门禁遮罩定位工具类(2026-09-08 未购产线引导层用): + * 根容器 relative + 遮罩 absolute 铺满内容区(不盖顶栏/底部 TabBar) */ +.pl-gate-root { position: relative; } +.pl-gate { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; +}