cancelAppointment.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. .page-container {
  2. background-color: #f3f3f3;
  3. padding-top: 10px;
  4. padding-bottom: 140rpx;
  5. height: calc(100vh - 44px);
  6. box-sizing: border-box;
  7. -webkit-overflow-scrolling: touch;
  8. .verify-record-page {
  9. background: white;
  10. // padding: 24rpx 0;
  11. padding-bottom: 50px;
  12. }
  13. .title {
  14. font-size: 32rpx;
  15. font-weight: bold;
  16. padding: 24rpx 32rpx 12rpx 32rpx;
  17. color: #222;
  18. }
  19. .record-card {
  20. background: #fff;
  21. border-radius: 16rpx;
  22. margin: 0 24rpx 24rpx 24rpx;
  23. padding: 24rpx 24rpx 18rpx 24rpx;
  24. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  25. }
  26. .record-header {
  27. font-size: 28rpx;
  28. font-weight: 500;
  29. color: #222;
  30. margin-bottom: 12rpx;
  31. display: flex;
  32. align-items: center;
  33. }
  34. .record-index {
  35. margin-right: 8rpx;
  36. }
  37. .record-time {
  38. color: #222;
  39. }
  40. .record-row {
  41. font-size: 26rpx;
  42. color: #666;
  43. margin-bottom: 8rpx;
  44. display: flex;
  45. flex-wrap: wrap;
  46. }
  47. .opt-img {
  48. display: flex;
  49. justify-content: baseline;
  50. .img-box {
  51. width: 300rpx;
  52. height: 200rpx;
  53. border-radius: 10rpx;
  54. }
  55. }
  56. .label {
  57. color: #999;
  58. margin-right: 8rpx;
  59. }
  60. }
  61. .bottom-actions {
  62. position: fixed;
  63. left: 0;
  64. right: 0;
  65. bottom: 0;
  66. padding: 24rpx 32rpx calc(24rpx + env(safe-area-inset-bottom));
  67. background: #f3f3f3;
  68. box-sizing: border-box;
  69. }
  70. .bottom-btn {
  71. height: 88rpx;
  72. line-height: 88rpx;
  73. border-radius: 12rpx;
  74. background: #1976d2;
  75. color: #fff;
  76. font-size: 30rpx;
  77. text-align: center;
  78. }
  79. .empty-state {
  80. display: flex;
  81. justify-content: center;
  82. align-items: center;
  83. min-height: 300rpx;
  84. padding: 40rpx;
  85. .empty-text {
  86. color: #999;
  87. font-size: 28rpx;
  88. }
  89. }
  90. // 预约成功卡片
  91. .appointment-success-card {
  92. background: #fff;
  93. border-radius: 16rpx;
  94. // margin: 24rpx;
  95. padding: 30rpx 32rpx 40rpx;
  96. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  97. margin-bottom: 20rpx;
  98. }
  99. .appointment-actions {
  100. margin-top: 30rpx;
  101. display: flex;
  102. justify-content: center;
  103. gap: 24rpx;
  104. }
  105. .action-btn {
  106. min-width: 220rpx;
  107. height: 72rpx;
  108. line-height: 72rpx;
  109. border-radius: 12rpx;
  110. font-size: 28rpx;
  111. text-align: center;
  112. box-sizing: border-box;
  113. padding: 0 24rpx;
  114. }
  115. .action-btn.cancel {
  116. background: #fff;
  117. color: #1976d2;
  118. border: 2rpx solid #1976d2;
  119. margin-right: 20px;
  120. }
  121. .action-btn.modify {
  122. background: #1976d2;
  123. color: #fff;
  124. border: 2rpx solid #1976d2;
  125. }
  126. .appointment-success-title {
  127. font-size: 48rpx;
  128. font-weight: 600;
  129. color: #000;
  130. text-align: center;
  131. margin-bottom: 30rpx;
  132. }
  133. // 二维码容器
  134. .qr-code-container {
  135. display: flex;
  136. justify-content: center;
  137. align-items: center;
  138. margin-bottom: 50rpx;
  139. }
  140. .qr-code-image {
  141. width: 400rpx;
  142. height: 400rpx;
  143. background: #fff;
  144. }
  145. .qr-code-placeholder {
  146. width: 260rpx;
  147. height: 260rpx;
  148. background: #f5f5f5;
  149. border: 2rpx dashed #ddd;
  150. border-radius: 8rpx;
  151. display: flex;
  152. align-items: center;
  153. justify-content: center;
  154. }
  155. .qr-code-text {
  156. font-size: 28rpx;
  157. color: #999;
  158. }
  159. // 预约信息
  160. .appointment-info {
  161. margin-bottom: 50rpx;
  162. margin-left: 100rpx;
  163. }
  164. .info-item {
  165. display: flex;
  166. align-items: flex-start;
  167. margin-bottom: 25rpx;
  168. font-size: 30rpx;
  169. line-height: 1.8;
  170. }
  171. .info-label {
  172. color: #000;
  173. margin-right: 16rpx;
  174. // min-width: 180rpx;
  175. flex-shrink: 0;
  176. }
  177. .info-value {
  178. color: #000;
  179. flex: 1;
  180. word-break: break-all;
  181. font-weight: 600;
  182. }
  183. // 提示信息
  184. // .appointment-tip {
  185. // margin-top: 50rpx;
  186. // padding-top: 40rpx;
  187. // border-top: 1rpx solid #eee;
  188. // }
  189. .tip-text {
  190. font-size: 26rpx;
  191. color: #000;
  192. line-height: 1.8;
  193. text-align: center;
  194. }
  195. .evaluate-box{
  196. display: flex;
  197. justify-content: space-between;
  198. align-items: center;
  199. }
  200. .btn-review {
  201. padding: 12rpx 40rpx;
  202. border-radius: 12rpx;
  203. font-size: 26rpx;
  204. text-align: center;
  205. background-color: #fff;
  206. color: #1976d2;
  207. border: 1px solid #1976d2;
  208. margin-left: 20rpx;
  209. }