scaned-book.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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-history {
  17. min-height: 100vh;
  18. }
  19. .scan-history .checkbox-item .u-checkbox__label {
  20. margin: 0 !important;
  21. }
  22. .scan-history .header {
  23. position: -webkit-sticky;
  24. position: sticky;
  25. top: 0;
  26. left: 0;
  27. right: 0;
  28. z-index: 100;
  29. height: 88rpx;
  30. background: #FFFFFF;
  31. display: flex;
  32. justify-content: space-between;
  33. align-items: center;
  34. padding: 0 30rpx;
  35. font-size: 28rpx;
  36. border-bottom: 1rpx solid #EEEEEE;
  37. }
  38. .scan-history .header .left {
  39. display: flex;
  40. align-items: center;
  41. }
  42. .scan-history .header .left .select-text {
  43. margin-left: 12rpx;
  44. color: #333333;
  45. }
  46. .scan-history .header .right text {
  47. color: #333333;
  48. }
  49. .scan-history .header .right text.delete-btn {
  50. color: #FF5B5B;
  51. }
  52. .scan-history .scroll-view {
  53. height: calc(100vh - 88rpx);
  54. }
  55. .scan-history .book-list {
  56. padding: 20rpx;
  57. display: flex;
  58. flex-wrap: wrap;
  59. justify-content: flex-start;
  60. gap: 20rpx;
  61. }
  62. .scan-history .book-list .load-more {
  63. width: 100%;
  64. display: flex;
  65. color: #999999;
  66. font-size: 24rpx;
  67. padding: 30rpx 0;
  68. justify-content: center;
  69. }