- 新增 pages/brochure/index 页面实现原生品牌画册展示功能 - 在首页 index.tsx 中添加 BrochureEntry 入口组件并调整布局位置 - 新增首页画册入口样式文件 BrochureEntry.scss 和组件逻辑 BrochureEntry.tsx - 配置画册页面导航栏标题和样式,设置页面配置文件 index.config.ts - 实现画册页面完整的品牌展示、核心优势、服务承诺、案例方向等功能模块 - 集成 CMS 配置读取,支持动态品牌名称、电话、地址等信息展示 - 添加分享功能、拨打电话、复制地址等交互操作 - 更新文档记录画册功能开发过程和接入方案说明
37 lines
635 B
SCSS
37 lines
635 B
SCSS
.brochure-entry {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.brochure-entry__card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
border-radius: 16px;
|
|
background: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
|
|
box-shadow: 0 10px 24px rgba(29, 78, 216, 0.18);
|
|
}
|
|
|
|
.brochure-entry__icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 44px;
|
|
height: 44px;
|
|
flex-shrink: 0;
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.16);
|
|
}
|
|
|
|
.brochure-entry__content {
|
|
flex: 1;
|
|
gap: 4px;
|
|
}
|
|
|
|
.brochure-entry__action {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
flex-shrink: 0;
|
|
}
|