index.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /* 容器样式 */
  2. .preview-container {
  3. width: 100%;
  4. height: 100vh;
  5. background-image: url('https://swkz-1332577016.cos.ap-guangzhou.myqcloud.com/karamay/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. font-size: 32rpx;
  68. color: #B1967B;
  69. }
  70. /* 取消按钮 */
  71. .cancel-btn {
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. width: 80px;
  76. height: 40px;
  77. border-radius: 6rpx;
  78. border: 1px solid #B1967B;
  79. color: #B1967B;
  80. font-size: 32rpx;
  81. }
  82. /* 印章图标 */
  83. .stamp-icon {
  84. width: 136rpx;
  85. height: 136rpx;
  86. }
  87. .stamp-icon image {
  88. width: 100%;
  89. height: 100%;
  90. }
  91. /* 参观人信息区域 */
  92. .visitors-section {
  93. position: absolute;
  94. top: 240rpx;
  95. z-index: 1;
  96. padding: 0 40rpx 20rpx;
  97. max-height: 600rpx;
  98. overflow-y: auto;
  99. }
  100. /* 区域标题 */
  101. .section-title {
  102. font-size: 28rpx;
  103. color: #333;
  104. font-weight: 600;
  105. margin-bottom: 20rpx;
  106. margin-top: 30rpx;
  107. }
  108. .section-title:first-child {
  109. margin-top: 0;
  110. }
  111. /* 参观人信息 */
  112. .visitor-info {
  113. margin-bottom: 20rpx;
  114. }
  115. /* 参观人详情 */
  116. .visitor-detail {
  117. display: flex;
  118. align-items: center;
  119. margin-bottom: 15rpx;
  120. }
  121. .visitor-detail:last-child {
  122. margin-bottom: 0;
  123. }
  124. /* 参观人标签 */
  125. .visitor-label {
  126. font-size: 32rpx;
  127. color: #584735;
  128. margin-right: 10rpx;
  129. min-width: 140rpx;
  130. }
  131. /* 参观人值 */
  132. .visitor-value {
  133. font-size: 32rpx;
  134. color: #B1967B;
  135. flex: 1;
  136. }
  137. /* 加载更多样式 */
  138. .load-more {
  139. display: flex;
  140. justify-content: center;
  141. align-items: center;
  142. padding: 30rpx 0;
  143. }
  144. .load-more-text {
  145. font-size: 28rpx;
  146. color: #999;
  147. }
  148. .loading-text {
  149. font-size: 28rpx;
  150. color: #666;
  151. }
  152. /* 没有更多数据样式 */
  153. .no-more {
  154. display: flex;
  155. justify-content: center;
  156. align-items: center;
  157. padding: 30rpx 0;
  158. }
  159. .no-more-text {
  160. font-size: 28rpx;
  161. color: #ccc;
  162. }
  163. /* 首次加载样式 */
  164. .first-loading {
  165. display: flex;
  166. justify-content: center;
  167. align-items: center;
  168. height: 400rpx;
  169. margin-top: 100rpx;
  170. }
  171. /* 空状态样式 */
  172. .empty-state {
  173. display: flex;
  174. justify-content: center;
  175. align-items: center;
  176. height: 400rpx;
  177. margin-top: 100rpx;
  178. }
  179. .empty-text {
  180. font-size: 32rpx;
  181. color: #999;
  182. text-align: center;
  183. }
  184. /* 滚动条样式 */
  185. ::-webkit-scrollbar {
  186. width: 0;
  187. background: transparent;
  188. }