fix: 修复保存网络图片

This commit is contained in:
2025-12-06 23:32:16 +08:00
parent 0a864fd400
commit bbb5170802
2 changed files with 41 additions and 26 deletions

View File

@@ -56,7 +56,7 @@
// border-radius: 12px;
// border: 1px solid rgba(0, 0, 0, 0.06);
// background: lightgray 50% / cover no-repeat;
box-shadow: 0 4px 36px 0 rgba(0, 0, 0, 0.16);
// box-shadow: 0 4px 36px 0 rgba(0, 0, 0, 0.16);
}
.qrcodeTip {
@@ -74,12 +74,14 @@
}
.listPage {
background-color: #FAFAFA;
background-color: #fafafa;
font-family: "PingFang SC";
transition: padding-top 0.3s ease-in-out; // 添加过渡动画,让布局变化更平滑
display: flex;
flex-direction: column;
height: calc(100vh - var(--status-bar-height, 0px) - var(--nav-bar-height, 0px) - 112px); // 减去底部导航栏高度 112px
height: calc(
100vh - var(--status-bar-height, 0px) - var(--nav-bar-height, 0px) - 112px
); // 减去底部导航栏高度 112px
overflow: hidden;
.fixedHeader {
@@ -190,4 +192,4 @@
.guideBarHighZIndex {
z-index: 900 !important; // 正常状态,保持较高层级
}
}