19 lines
362 B
SCSS
19 lines
362 B
SCSS
.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;
|
|
}
|
|
}
|