| 12345678910111213141516171819202122232425262728 |
- @charset "UTF-8";
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- .page {
- background-color: #f8f8f8;
- font-family: PingFangSC;
- }
- .safeAreaPad {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .scroll-view {
- height: calc(100vh - 88rpx);
- }
- .load-more {
- width: 100%;
- display: flex;
- color: #999999;
- font-size: 24rpx;
- padding: 30rpx 0;
- justify-content: center;
- padding-bottom: calc(env(safe-area-inset-bottom) + 30rpx);
- }
|