notes.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .container.data-v-cc7fb8d7 {
  2. width: 100%;
  3. height: 100vh;
  4. min-height: 100vh;
  5. background-color: #FFFFFF;
  6. display: flex;
  7. padding-top: 30px;
  8. box-sizing: border-box;
  9. flex-direction: column;
  10. box-sizing: border-box;
  11. overflow: hidden;
  12. }
  13. .header.data-v-cc7fb8d7 {
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. padding: 20rpx 30rpx;
  18. padding-top: calc(20rpx + env(safe-area-inset-top));
  19. background-color: #FFFFFF;
  20. border-bottom: 1rpx solid #F0F0F0;
  21. position: relative;
  22. flex-shrink: 0;
  23. box-sizing: border-box;
  24. }
  25. .back-btn.data-v-cc7fb8d7 {
  26. width: 60rpx;
  27. height: 60rpx;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. z-index: 10;
  32. }
  33. .back-icon.data-v-cc7fb8d7 {
  34. font-size: 40rpx;
  35. color: #333333;
  36. font-weight: bold;
  37. }
  38. .header-title.data-v-cc7fb8d7 {
  39. position: absolute;
  40. left: 50%;
  41. transform: translateX(-50%);
  42. font-size: 36rpx;
  43. font-weight: bold;
  44. color: #333333;
  45. }
  46. .header-right.data-v-cc7fb8d7 {
  47. width: 60rpx;
  48. }
  49. .scroll-content.data-v-cc7fb8d7 {
  50. flex: 1;
  51. width: 100%;
  52. height: 0;
  53. overflow: hidden;
  54. padding-bottom: calc(env(safe-area-inset-bottom));
  55. background-color: #FFFFFF;
  56. box-sizing: border-box;
  57. }
  58. .note-item.data-v-cc7fb8d7 {
  59. display: flex;
  60. align-items: center;
  61. padding: 30rpx;
  62. border-bottom: 1rpx solid #F0F0F0;
  63. background-color: #FFFFFF;
  64. width: 100%;
  65. box-sizing: border-box;
  66. }
  67. .note-item.data-v-cc7fb8d7:last-child {
  68. border-bottom: none;
  69. }
  70. .book-cover.data-v-cc7fb8d7 {
  71. width: 120rpx;
  72. height: 160rpx;
  73. border-radius: 8rpx;
  74. margin-right: 30rpx;
  75. flex-shrink: 0;
  76. box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.1);
  77. background-color: #F5F5F5;
  78. }
  79. .book-info.data-v-cc7fb8d7 {
  80. flex: 1;
  81. display: flex;
  82. flex-direction: column;
  83. justify-content: center;
  84. min-width: 0;
  85. }
  86. .book-title.data-v-cc7fb8d7 {
  87. font-size: 32rpx;
  88. font-weight: bold;
  89. color: #333333;
  90. margin-bottom: 15rpx;
  91. overflow: hidden;
  92. text-overflow: ellipsis;
  93. white-space: nowrap;
  94. }
  95. .note-count.data-v-cc7fb8d7 {
  96. font-size: 26rpx;
  97. color: #999999;
  98. }
  99. .empty-state.data-v-cc7fb8d7 {
  100. display: flex;
  101. align-items: center;
  102. justify-content: center;
  103. padding: 200rpx 0;
  104. }
  105. .empty-text.data-v-cc7fb8d7 {
  106. font-size: 28rpx;
  107. color: #999999;
  108. }