123456789101112131415161718 |
- page{
- /* nav默认 */
- --themeNavColor: black;
- --themeNavBg: white;
- /* nav可以改动 */
- --themeNavColor1: white;
- --themeNavBg1: #99CCFF;
- // 容器
- --themeCtrBg:#eee;
- background-color:var(--themeCtrBg);
- // 成功 失败 警告
- --themeSuccess:#0c0;
- --themeDanger:#f03;
- --themeWarm:#f90;
- }
- .globstyle{
- margin-bottom: 150rpx;
- }
|