15 lines
343 B
CSS
15 lines
343 B
CSS
/* 产品详情页 - 页面容器样式 */
|
|
/* 各区块样式在 pages/product-detail/components/ 下对应组件的 <style scoped> 中 */
|
|
|
|
.detail-page {
|
|
min-height: 100vh;
|
|
background: #ffffff;
|
|
}
|
|
|
|
/* 区块之间的灰色分隔条:390x6px #F5F5F5 */
|
|
.section-divider {
|
|
width: 100%;
|
|
height: 12rpx; /* 6px */
|
|
background: #f5f5f5;
|
|
}
|