feat: 商品详情页面交互

This commit is contained in:
duanshuwen
2025-08-02 17:35:57 +08:00
parent 9d6abe3e2a
commit ea5841d594
28 changed files with 1967 additions and 268 deletions

View File

@@ -0,0 +1,18 @@
.goods-container {
min-height: 100vh;
background-color: #fff;
.content-wrapper {
// 为固定导航栏预留空间
padding-top: calc(var(--status-bar-height, 44px) + 68px);
}
.goods-content {
border-radius: 12px 12px 0 0;
background-color: #fff;
padding: 12px;
position: relative;
margin-top: -30px;
z-index: 1;
}
}