|
|
|
@ -1,28 +1,45 @@ |
|
|
|
/* pages/goods-update/goods-update.wxss */ |
|
|
|
|
|
|
|
/* 页面容器 */ |
|
|
|
.goods-update-page { |
|
|
|
min-height: 100vh; |
|
|
|
background-color: #f5f7fa; |
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; |
|
|
|
overflow-y: auto; |
|
|
|
-webkit-overflow-scrolling: touch; |
|
|
|
/* 强制隐藏所有可能的滚动条 */ |
|
|
|
|
|
|
|
/* 页面级滚动条隐藏 */ |
|
|
|
page { |
|
|
|
overflow: hidden; |
|
|
|
scrollbar-width: none; /* Firefox */ |
|
|
|
-ms-overflow-style: none; /* IE/Edge */ |
|
|
|
} |
|
|
|
|
|
|
|
.goods-update-page::-webkit-scrollbar { |
|
|
|
page::-webkit-scrollbar { |
|
|
|
display: none; |
|
|
|
width: 0; |
|
|
|
height: 0; |
|
|
|
} |
|
|
|
|
|
|
|
/* 隐藏所有页面滚动条 */ |
|
|
|
page::-webkit-scrollbar { |
|
|
|
display: none; |
|
|
|
/* 页面容器设置 */ |
|
|
|
.goods-update-page { |
|
|
|
min-height: 100vh; |
|
|
|
background-color: #f5f7fa; |
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; |
|
|
|
overflow: hidden; /* 禁用页面容器滚动 */ |
|
|
|
position: relative; |
|
|
|
} |
|
|
|
|
|
|
|
page { |
|
|
|
/* 商品详情内容区域作为主要滚动区域 */ |
|
|
|
.goods-detail-content { |
|
|
|
height: calc(100vh - 140px); /* 减去底部按钮和顶部区域的高度 */ |
|
|
|
overflow-y: auto; |
|
|
|
-webkit-overflow-scrolling: touch; |
|
|
|
scrollbar-width: none; /* Firefox */ |
|
|
|
-ms-overflow-style: none; /* IE/Edge */ |
|
|
|
position: relative; |
|
|
|
} |
|
|
|
|
|
|
|
/* 强制隐藏滚动条 */ |
|
|
|
.goods-detail-content::-webkit-scrollbar { |
|
|
|
display: none; |
|
|
|
width: 0; |
|
|
|
height: 0; |
|
|
|
} |
|
|
|
|
|
|
|
/* 隐藏所有scroll-view组件的滚动条 */ |
|
|
|
@ -33,25 +50,35 @@ scroll-view { |
|
|
|
|
|
|
|
scroll-view::-webkit-scrollbar { |
|
|
|
display: none; |
|
|
|
width: 0; |
|
|
|
height: 0; |
|
|
|
} |
|
|
|
|
|
|
|
/* 隐藏商品详情内容区域的滚动条 */ |
|
|
|
.goods-detail-content { |
|
|
|
/* 隐藏模态框中scroll-view的滚动条 */ |
|
|
|
.modal-scroll-view { |
|
|
|
scrollbar-width: none; /* Firefox */ |
|
|
|
-ms-overflow-style: none; /* IE/Edge */ |
|
|
|
} |
|
|
|
|
|
|
|
.goods-detail-content::-webkit-scrollbar { |
|
|
|
.modal-scroll-view::-webkit-scrollbar { |
|
|
|
display: none; |
|
|
|
width: 0; |
|
|
|
height: 0; |
|
|
|
} |
|
|
|
|
|
|
|
/* 隐藏模态框中scroll-view的滚动条 */ |
|
|
|
.modal-scroll-view { |
|
|
|
scrollbar-width: none; /* Firefox */ |
|
|
|
-ms-overflow-style: none; /* IE/Edge */ |
|
|
|
/* 添加额外的滚动条隐藏样式,覆盖可能的系统默认样式 */ |
|
|
|
::-webkit-scrollbar { |
|
|
|
display: none; |
|
|
|
width: 0 !important; |
|
|
|
height: 0 !important; |
|
|
|
-webkit-appearance: none; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-scroll-view::-webkit-scrollbar { |
|
|
|
::-webkit-scrollbar-track { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
|
|
|
|
|