index.wxss 624 B

12345678910111213141516171819202122232425262728
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad {
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. box-sizing: content-box;
  15. }
  16. .scroll-view {
  17. height: calc(100vh - 88rpx);
  18. }
  19. .load-more {
  20. width: 100%;
  21. display: flex;
  22. color: #999999;
  23. font-size: 24rpx;
  24. padding: 30rpx 0;
  25. justify-content: center;
  26. padding-bottom: calc(env(safe-area-inset-bottom) + 30rpx);
  27. }