Fix(云灵AI):[#5796]预设礼品条件选择界面,苹果16以后出的手机,页面无法往下滑动

This commit is contained in:
lifizer
2026-08-20 17:05:48 +08:00
parent c58f785304
commit 6843be82cb
+10 -2
View File
@@ -862,10 +862,18 @@ export default {
display: flex;
flex-direction: column;
justify-content: space-between;
height: calc(100vh - 240rpx);
min-height: calc(100vh - 240rpx);
height: auto;
padding: 0 0 240rpx 0;
padding-bottom: calc(240rpx + constant(safe-area-inset-bottom));
padding-bottom: calc(240rpx + env(safe-area-inset-bottom));
box-sizing: border-box;
overflow-y: auto;
overflow: visible;
}
.gift-steps-wrap {
padding-bottom: 40rpx;
padding-bottom: calc(40rpx + constant(safe-area-inset-bottom));
padding-bottom: calc(40rpx + env(safe-area-inset-bottom));
}
.focus-guide-wrap {
display: flex;