index.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /* 容器样式 */
  2. .preview-container {
  3. width: 100%;
  4. height: 100vh;
  5. background-image: url('https://klmybwg.4dage.com/mini/wxImg/bg.png');
  6. overflow: auto;
  7. }
  8. /* 预约列表容器 */
  9. .reservation-list {
  10. width: 100%;
  11. height: 100vh;
  12. padding: 40rpx 30rpx;
  13. box-sizing: border-box;
  14. }
  15. /* 预约卡片样式 */
  16. .reservation-card {
  17. position: relative;
  18. width: 100%;
  19. height: 736rpx;
  20. margin-bottom: 40rpx;
  21. border-radius: 20rpx;
  22. overflow: hidden;
  23. box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.1);
  24. }
  25. /* 卡片背景图 */
  26. .card-bg {
  27. position: absolute;
  28. top: 0;
  29. left: 0;
  30. width: 100%;
  31. height: 100%;
  32. z-index: 1;
  33. }
  34. /* 预约信息区域 */
  35. .reservation-info {
  36. position: absolute;
  37. top: 10rpx;
  38. width: 90%;
  39. z-index: 1;
  40. padding: 40rpx 0 0 40rpx;
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: flex-start;
  44. }
  45. /* 日期时间区域 */
  46. .date-time-section {
  47. flex: 1;
  48. }
  49. /* 信息行 */
  50. .info-row {
  51. display: flex;
  52. align-items: center;
  53. margin-bottom: 20rpx;
  54. }
  55. .info-row:last-child {
  56. margin-bottom: 0;
  57. }
  58. /* 标签样式 */
  59. .label {
  60. font-size: 32rpx;
  61. color: #584735;
  62. font-weight: bold;
  63. margin-right: 10rpx;
  64. }
  65. /* 值样式 */
  66. .value {
  67. width: 250rpx;
  68. white-space: nowrap;
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. font-size: 32rpx;
  72. color: #B1967B;
  73. }
  74. /* 取消按钮 */
  75. .cancel-btn {
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. width: 80px;
  80. height: 40px;
  81. border-radius: 6rpx;
  82. border: 1px solid #B1967B;
  83. color: #B1967B;
  84. font-size: 32rpx;
  85. }
  86. /* 印章图标 */
  87. .stamp-icon {
  88. width: 136rpx;
  89. height: 136rpx;
  90. }
  91. .stamp-icon image {
  92. width: 100%;
  93. height: 100%;
  94. }
  95. /* 参观人信息区域 */
  96. .visitors-section {
  97. position: absolute;
  98. top: 240rpx;
  99. z-index: 1;
  100. padding: 0 40rpx 20rpx;
  101. max-height: 440rpx;
  102. overflow-y: auto;
  103. }
  104. /* 区域标题 */
  105. .section-title {
  106. font-size: 32rpx;
  107. color: #584735;
  108. font-weight: 600;
  109. margin-bottom: 26rpx;
  110. margin-top: 26rpx;
  111. }
  112. .section-title:first-child {
  113. margin-top: 0;
  114. }
  115. /* 参观人信息 */
  116. .visitor-info {
  117. margin-bottom: 20rpx;
  118. }
  119. /* 参观人详情 */
  120. .visitor-detail {
  121. display: flex;
  122. align-items: center;
  123. margin-bottom: 15rpx;
  124. }
  125. .visitor-detail:last-child {
  126. margin-bottom: 0;
  127. }
  128. /* 参观人标签 */
  129. .visitor-label {
  130. font-size: 32rpx;
  131. color: #B1967B;
  132. margin-right: 10rpx;
  133. min-width: 140rpx;
  134. }
  135. /* 参观人值 */
  136. .visitor-value {
  137. font-size: 32rpx;
  138. color: #B1967B;
  139. flex: 1;
  140. }
  141. /* 加载更多样式 */
  142. .load-more {
  143. display: flex;
  144. justify-content: center;
  145. align-items: center;
  146. padding: 30rpx 0;
  147. }
  148. .load-more-text {
  149. font-size: 28rpx;
  150. color: #999;
  151. }
  152. .loading-text {
  153. font-size: 28rpx;
  154. color: #666;
  155. }
  156. /* 没有更多数据样式 */
  157. .no-more {
  158. display: flex;
  159. justify-content: center;
  160. align-items: center;
  161. padding: 30rpx 0;
  162. }
  163. .no-more-text {
  164. font-size: 28rpx;
  165. color: #ccc;
  166. }
  167. /* 首次加载样式 */
  168. .first-loading {
  169. display: flex;
  170. justify-content: center;
  171. align-items: center;
  172. height: 400rpx;
  173. margin-top: 100rpx;
  174. }
  175. /* 空状态样式 */
  176. .empty-state {
  177. display: flex;
  178. justify-content: center;
  179. align-items: center;
  180. height: 400rpx;
  181. margin-top: 100rpx;
  182. }
  183. .empty-text {
  184. font-size: 32rpx;
  185. color: #999;
  186. text-align: center;
  187. }
  188. /* 滚动条样式 */
  189. ::-webkit-scrollbar {
  190. width: 0;
  191. background: transparent;
  192. }