商品浏览页构建前最后一次更新

This commit is contained in:
2026-08-02 00:21:54 +08:00
parent d37a93ab9e
commit e423ab2d73
146 changed files with 3449 additions and 1342 deletions
+39
View File
@@ -273,3 +273,42 @@ page {
.safe-bottom-placeholder {
height: 160rpx;
}
/* ==========================================================
底部弹窗遮罩(地址选择器等共用)
========================================================== */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 600;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.addr-picker-sheet {
width: 100%;
max-height: 70vh;
border-radius: 24rpx 24rpx 0 0;
padding: 24rpx 24rpx calc(24rpx + env(safe-area-inset-bottom));
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
background: var(--bg-card);
border-top: var(--line-card);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}