index.acss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. .hospital-new-component .result-root {
  2. position: relative;
  3. z-index: 1;
  4. padding-bottom: 40rpx;
  5. background-image: linear-gradient(180deg, #1677FF 20rpx, rgba(22, 119, 255, 0) 96%);
  6. background-size: 100% 200rpx;
  7. background-repeat: no-repeat;
  8. padding-top: 24rpx;
  9. }
  10. .hospital-new-component .result-root .footer-container {
  11. padding-top: 40rpx;
  12. }
  13. .hospital-new-component .result-root .back-to-home {
  14. height: 98rpx;
  15. color: #fff;
  16. font-size: 36rpx;
  17. border-radius: 8rpx;
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. background-color: #1677FF;
  22. margin: 0 24rpx;
  23. }
  24. .hospital-new-component .result-root .back-to-home:active {
  25. opacity: 0.9;
  26. }
  27. .hospital-new-component .result-root .result-center {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. }
  32. .hospital-new-component .result-root .result-block {
  33. background: #fff;
  34. border-radius: 16rpx;
  35. padding: 24rpx;
  36. font-size: 30rpx;
  37. margin: 0 24rpx 24rpx;
  38. color: #333;
  39. line-height: 42rpx;
  40. }
  41. .hospital-new-component .result-root .result-block .result-block-row {
  42. display: flex;
  43. padding: 13rpx 0;
  44. line-height: 42rpx;
  45. }
  46. .hospital-new-component .result-root .result-block .result-block-row .result-block-success {
  47. color: #22b35e;
  48. font-size: 38rpx;
  49. font-weight: 500;
  50. margin-left: 10rpx;
  51. margin-top: 30rpx;
  52. }
  53. .hospital-new-component .result-root .result-block .result-block-row .result-form-label {
  54. flex: 0 0 182rpx;
  55. color: #666;
  56. font-size: 32rpx;
  57. white-space: nowrap;
  58. }
  59. .hospital-new-component .result-root .result-block .result-block-row .result-form-val {
  60. flex: 1 1 auto;
  61. color: #333;
  62. font-weight: 500;
  63. font-size: 32rpx;
  64. text-align: right;
  65. }
  66. .hospital-new-component .result-root .result-block .result-block-row.center {
  67. flex-direction: column;
  68. align-items: center;
  69. padding-top: 40rpx;
  70. margin-bottom: 40rpx;
  71. line-height: 1;
  72. }
  73. .hospital-new-component .result-root .result-block .result-card-support {
  74. color: #FF6430;
  75. font-size: 26rpx;
  76. }
  77. .hospital-new-component .result-root .result-block .result-card-support .icon {
  78. margin-right: 10rpx;
  79. line-height: 1;
  80. }
  81. .hospital-new-component .result-root .result-block .result-block-top {
  82. padding-bottom: 15rpx;
  83. }
  84. .hospital-new-component .result-root .result-block .result-block-dashed {
  85. height: 1rpx;
  86. background: linear-gradient(to right, #e5e5e5 0%, #e5e5e5 40%, transparent 40%, transparent 100%) repeat-x;
  87. background-size: 15rpx 1rpx;
  88. }
  89. .hospital-new-component .result-root .result-block .result-card {
  90. padding-bottom: 20rpx;
  91. }
  92. .hospital-new-component .result-root .result-block .result-card .result-card-row {
  93. display: flex;
  94. margin-top: 23rpx;
  95. line-height: 42rpx;
  96. color: #999;
  97. }
  98. .hospital-new-component .result-root .result-block .result-card .result-card-row .result-card-label {
  99. width: 182rpx;
  100. }
  101. .hospital-new-component .result-root .result-block .result-card .result-card-row .result-card-val {
  102. flex: 1 1 auto;
  103. display: flex;
  104. color: #333;
  105. justify-content: flex-end;
  106. }
  107. .hospital-new-component .result-root .result-block .result-card .result-card-row .light {
  108. color: #FF6430;
  109. }
  110. .hospital-new-component .result-root .result-block .result-card-btn {
  111. color: #1677FF;
  112. margin-left: 16rpx;
  113. }
  114. .hospital-new-component .result-root .result-block .result-block-title {
  115. display: flex;
  116. justify-content: space-between;
  117. color: #333;
  118. font-size: 30rpx;
  119. font-weight: 500;
  120. padding-bottom: 24rpx;
  121. border-bottom: 1rpx solid #e5e5e5;
  122. margin-bottom: 25rpx;
  123. }
  124. .hospital-new-component .result-root .result-block .result-block-btn {
  125. color: #1677FF;
  126. font-size: 30rpx;
  127. text-align: right;
  128. margin-top: 25rpx;
  129. }
  130. .hospital-new-component .result-root .result-block .result-block-btn .result-block-t {
  131. margin-right: 40rpx;
  132. }
  133. .hospital-new-component .result-root .result-block.result-block-cansel {
  134. color: #ff3143;
  135. font-size: 38rpx;
  136. line-height: 45rpx;
  137. text-align: center;
  138. padding: 40rpx 24rpx;
  139. }
  140. .hospital-new-component .result-root .result-block.result-block-cansel.success {
  141. color: #22b35e;
  142. }
  143. .hospital-new-component .result-root .result-block.result-block-cansel.cansel {
  144. color: #999;
  145. }
  146. .hospital-new-component .result-root .result-block.result-block-cansel .result-block-waiting {
  147. color: #ff6330;
  148. font-size: 38rpx;
  149. margin: 10rpx 0 20rpx;
  150. }
  151. .hospital-new-component .result-root .result-block.result-block-cansel .result-block-tip {
  152. color: #999;
  153. font-size: 26rpx;
  154. }
  155. .hospital-new-component .result-root .result-block .result-block-big {
  156. font-size: 48rpx;
  157. padding: 15rpx 0;
  158. }
  159. .hospital-new-component .result-root .result-block .result-block-big .line {
  160. position: relative;
  161. height: 48rpx;
  162. padding-right: 25rpx;
  163. margin-right: 25rpx;
  164. }
  165. .hospital-new-component .result-root .result-block .result-block-big .line:after {
  166. content: '';
  167. display: block;
  168. width: 1rpx;
  169. height: 36rpx;
  170. background: #e5e5e5;
  171. position: absolute;
  172. top: 50%;
  173. right: 0;
  174. margin-top: -18rpx;
  175. }
  176. .hospital-new-component .result-root .result-block .result-tip {
  177. position: relative;
  178. font-size: 24rpx;
  179. padding: 0 25rpx;
  180. }
  181. .hospital-new-component .result-root .result-block .result-tip:before {
  182. content: '';
  183. display: block;
  184. width: 10rpx;
  185. height: 10rpx;
  186. position: absolute;
  187. top: 50%;
  188. left: 0;
  189. margin-top: -5rpx;
  190. background: #1677FF;
  191. border-radius: 50%;
  192. }
  193. .hospital-new-component .result-root .result-block .result-gray {
  194. color: #999;
  195. font-size: 24rpx;
  196. margin-bottom: 10rpx;
  197. }
  198. .hospital-new-component .result-root .result-block .result-block-flex {
  199. display: flex;
  200. flex-wrap: wrap;
  201. margin: 10rpx -16rpx -16rpx 0;
  202. }
  203. .hospital-new-component .result-root .result-block .result-block-flex .result-block-image {
  204. width: 160rpx;
  205. height: 160rpx;
  206. border-radius: 8rpx;
  207. margin-right: 16rpx;
  208. margin-bottom: 16rpx;
  209. }
  210. .hospital-new-component .result-root .tmp .result-card {
  211. padding-bottom: 0;
  212. }
  213. .hospital-new-component .result-root .tmp .result-card .result-card-val {
  214. color: #333;
  215. }
  216. .hospital-new-component .result-root .result-button {
  217. color: #1677FF;
  218. font-size: 30rpx;
  219. display: flex;
  220. justify-content: center;
  221. margin: 20rpx 0 0;
  222. }
  223. .hospital-new-component .result-root .result-button .txt {
  224. padding: 20rpx;
  225. }
  226. .hospital-new-component .result-root .theme {
  227. color: #1677FF;
  228. }
  229. .hospital-new-component .result-root .order-button-wrap {
  230. width: 100%;
  231. position: fixed;
  232. left: 0;
  233. bottom: 0;
  234. color: #333;
  235. font-size: 26rpx;
  236. background: #f5f5f5;
  237. }
  238. .hospital-new-component .result-root .order-button-wrap .order-button-f {
  239. display: flex;
  240. align-items: center;
  241. justify-content: space-between;
  242. background: #fff;
  243. padding: 24rpx 24rpx 40rpx;
  244. }
  245. .hospital-new-component .result-root .order-button-wrap .button {
  246. height: 98rpx;
  247. border-radius: 8rpx;
  248. background: #1677FF;
  249. width: 335rpx;
  250. font-weight: 300;
  251. }
  252. .hospital-new-component .result-root .order-button-wrap .full {
  253. width: 100%;
  254. }
  255. .hospital-new-component .result-root .order-button-wrap .coder-pay-price {
  256. font-size: 48rpx;
  257. color: #FF6430;
  258. font-weight: 500;
  259. margin-left: 16rpx;
  260. }
  261. .hospital-new-component .result-root .order-button-wrap .order-pay-tip {
  262. color: #999;
  263. font-size: 24rpx;
  264. text-align: center;
  265. padding: 20rpx 0;
  266. }
  267. .hospital-new-component .result-root.root-0 {
  268. padding-bottom: 300rpx;
  269. }