15 lines
280 B
CSS
15 lines
280 B
CSS
/* 货盘页 - 页面容器样式 */
|
|
/* 各区块样式已移入 pages/products/components/ 下对应组件 */
|
|
|
|
.products-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
background: #f8f8f8;
|
|
}
|
|
.content-body {
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|