ScanBookList.wxss 916 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. .scan-book-list {
  17. padding: 20rpx;
  18. }
  19. .scan-book-list .tip-text {
  20. font-family: Source Han Sans CN;
  21. font-weight: 400;
  22. font-size: 24rpx;
  23. color: #FF8A4B;
  24. line-height: 36rpx;
  25. }
  26. .scan-book-list .link-wrap {
  27. gap: 20rpx;
  28. box-sizing: border-box;
  29. margin-top: 20rpx;
  30. }
  31. .scan-book-list .link-wrap .link-btn {
  32. height: 80rpx;
  33. background: #ffffff;
  34. border-radius: 10rpx;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. font-family: PingFang SC;
  39. font-weight: 500;
  40. font-size: 32rpx;
  41. color: #666666;
  42. }