cancelAppointment.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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. padding: 24rpx 32rpx calc(env(safe-area-inset-bottom));
  68. background: #f3f3f3;
  69. box-sizing: border-box;
  70. }
  71. .bottom-btn {
  72. height: 88rpx;
  73. line-height: 88rpx;
  74. border-radius: 12rpx;
  75. background: #1976d2;
  76. color: #fff;
  77. font-size: 30rpx;
  78. text-align: center;
  79. }
  80. .empty-state {
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. min-height: 300rpx;
  85. padding: 40rpx;
  86. .empty-text {
  87. color: #999;
  88. font-size: 28rpx;
  89. }
  90. }
  91. // 预约成功卡片
  92. .appointment-success-card {
  93. background: #fff;
  94. border-radius: 16rpx;
  95. // margin: 24rpx;
  96. padding: 30rpx 32rpx 40rpx;
  97. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  98. margin-bottom: 20rpx;
  99. }
  100. .appointment-actions {
  101. margin-top: 30rpx;
  102. display: flex;
  103. justify-content: center;
  104. gap: 24rpx;
  105. }
  106. .action-btn {
  107. min-width: 220rpx;
  108. height: 72rpx;
  109. line-height: 72rpx;
  110. border-radius: 12rpx;
  111. font-size: 28rpx;
  112. text-align: center;
  113. box-sizing: border-box;
  114. padding: 0 24rpx;
  115. }
  116. .action-btn.cancel {
  117. background: #fff;
  118. color: #1976d2;
  119. border: 2rpx solid #1976d2;
  120. margin-right: 20px;
  121. }
  122. .action-btn.modify {
  123. background: #1976d2;
  124. color: #fff;
  125. border: 2rpx solid #1976d2;
  126. }
  127. .appointment-success-title {
  128. font-size: 48rpx;
  129. font-weight: 600;
  130. color: #000;
  131. text-align: center;
  132. margin-bottom: 30rpx;
  133. }
  134. // 二维码容器
  135. .qr-code-container {
  136. display: flex;
  137. justify-content: center;
  138. align-items: center;
  139. margin-bottom: 50rpx;
  140. }
  141. .qr-code-image {
  142. width: 400rpx;
  143. height: 400rpx;
  144. background: #fff;
  145. }
  146. .qr-code-placeholder {
  147. width: 260rpx;
  148. height: 260rpx;
  149. background: #f5f5f5;
  150. border: 2rpx dashed #ddd;
  151. border-radius: 8rpx;
  152. display: flex;
  153. align-items: center;
  154. justify-content: center;
  155. }
  156. .qr-code-text {
  157. font-size: 28rpx;
  158. color: #999;
  159. }
  160. // 预约信息
  161. .appointment-info {
  162. margin-bottom: 50rpx;
  163. margin-left: 20rpx;
  164. }
  165. .info-item {
  166. display: flex;
  167. align-items: flex-start;
  168. margin-bottom: 25rpx;
  169. font-size: 30rpx;
  170. line-height: 1.8;
  171. }
  172. .info-label {
  173. color: #000;
  174. margin-right: 16rpx;
  175. // min-width: 180rpx;
  176. flex-shrink: 0;
  177. }
  178. .info-value {
  179. color: #000;
  180. flex: 1;
  181. word-break: break-all;
  182. font-weight: 600;
  183. }
  184. // 提示信息
  185. // .appointment-tip {
  186. // margin-top: 50rpx;
  187. // padding-top: 40rpx;
  188. // border-top: 1rpx solid #eee;
  189. // }
  190. .tip-text {
  191. font-size: 26rpx;
  192. color: #000;
  193. line-height: 1.8;
  194. text-align: center;
  195. }
  196. .evaluate-box{
  197. display: flex;
  198. justify-content: space-between;
  199. align-items: center;
  200. }
  201. .btn-review {
  202. padding: 12rpx 40rpx;
  203. border-radius: 12rpx;
  204. font-size: 26rpx;
  205. text-align: center;
  206. background-color: #fff;
  207. color: #1976d2;
  208. border: 1px solid #1976d2;
  209. margin-left: 20rpx;
  210. }