patient.wxss 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page,
  12. .content {
  13. background: #f8f8f8;
  14. height: 100%;
  15. }
  16. page .type-item,
  17. .content .type-item {
  18. height: 100%;
  19. position: relative;
  20. }
  21. page .type-item .item-title,
  22. .content .type-item .item-title {
  23. font-weight: bold;
  24. background: #ffffff;
  25. font-size: 36rpx;
  26. color: #333333;
  27. text-align: center;
  28. height: 100rpx;
  29. line-height: 100rpx;
  30. border-bottom: 2rpx solid #eeeeee;
  31. }
  32. page .type-item .record,
  33. .content .type-item .record {
  34. position: absolute;
  35. top: 25rpx;
  36. right: 25rpx;
  37. color: #6786fb;
  38. font-size: 30rpx;
  39. }
  40. .swiper-box {
  41. height: calc(100% - 80px);
  42. }
  43. .list-scroll-content {
  44. height: 100%;
  45. }
  46. .navbar {
  47. display: -webkit-box;
  48. display: -webkit-flex;
  49. display: flex;
  50. height: 40px;
  51. padding: 0 5px;
  52. background: #fff;
  53. box-shadow: 0 2px 2px rgba(0, 0, 0, 0.06);
  54. position: relative;
  55. z-index: 10;
  56. }
  57. .navbar .nav-item {
  58. -webkit-box-flex: 1;
  59. -webkit-flex: 1;
  60. flex: 1;
  61. display: -webkit-box;
  62. display: -webkit-flex;
  63. display: flex;
  64. -webkit-box-pack: center;
  65. -webkit-justify-content: center;
  66. justify-content: center;
  67. -webkit-box-align: center;
  68. -webkit-align-items: center;
  69. align-items: center;
  70. height: 100%;
  71. font-size: 15px;
  72. color: #303133;
  73. position: relative;
  74. }
  75. .navbar .nav-item.current {
  76. color: #6786FB;
  77. }
  78. .navbar .nav-item.current:after {
  79. content: '';
  80. position: absolute;
  81. left: 50%;
  82. bottom: 0;
  83. -webkit-transform: translateX(-50%);
  84. transform: translateX(-50%);
  85. width: 44px;
  86. height: 0;
  87. border-bottom: 2px solid #6786FB;
  88. }
  89. .uni-swiper-item {
  90. height: auto;
  91. }
  92. .order-item {
  93. display: -webkit-box;
  94. display: -webkit-flex;
  95. display: flex;
  96. -webkit-box-orient: vertical;
  97. -webkit-box-direction: normal;
  98. -webkit-flex-direction: column;
  99. flex-direction: column;
  100. padding-left: 30rpx;
  101. background: #fff;
  102. padding: 28rpx 28rpx;
  103. margin-bottom: 25rpx;
  104. border-radius: 15rpx;
  105. }
  106. .order-item .i-top {
  107. display: -webkit-box;
  108. display: -webkit-flex;
  109. display: flex;
  110. -webkit-box-align: center;
  111. -webkit-align-items: center;
  112. align-items: center;
  113. font-size: 30rpx;
  114. color: #6786fb;
  115. position: relative;
  116. }
  117. .order-item .i-top image {
  118. width: 34rpx;
  119. height: 32rpx;
  120. margin-right: 15rpx;
  121. }
  122. .order-item .i-top .time {
  123. width: 75%;
  124. }
  125. .order-item .i-top .time text {
  126. color: #666666;
  127. }
  128. .order-item .i-top .del-btn {
  129. padding: 10rpx 0 10rpx 36rpx;
  130. font-size: 32rpx;
  131. color: #909399;
  132. position: relative;
  133. }
  134. .order-item .i-top .del-btn:after {
  135. content: '';
  136. width: 0;
  137. height: 30rpx;
  138. border-left: 1px solid #dcdfe6;
  139. position: absolute;
  140. left: 20rpx;
  141. top: 50%;
  142. -webkit-transform: translateY(-50%);
  143. transform: translateY(-50%);
  144. }
  145. .order-item .goods-box-single {
  146. padding: 50rpx 0;
  147. }
  148. .order-item .goods-box-single .img-box {
  149. position: relative;
  150. }
  151. .order-item .goods-box-single .img-box .goods-img {
  152. display: block;
  153. width: 140rpx;
  154. height: 140rpx;
  155. border-radius: 25rpx;
  156. }
  157. .order-item .goods-box-single .img-box .corner {
  158. position: absolute;
  159. z-index: 999;
  160. }
  161. .order-item .goods-box-single .right {
  162. -webkit-box-flex: 1;
  163. -webkit-flex: 1;
  164. flex: 1;
  165. display: -webkit-box;
  166. display: -webkit-flex;
  167. display: flex;
  168. -webkit-box-orient: vertical;
  169. -webkit-box-direction: normal;
  170. -webkit-flex-direction: column;
  171. flex-direction: column;
  172. padding: 0 30rpx 0 24rpx;
  173. overflow: hidden;
  174. }
  175. .order-item .goods-box-single .right .title {
  176. font-size: 30rpx;
  177. line-height: 45rpx;
  178. font-weight: 500;
  179. color: #303133;
  180. line-height: 50rpx;
  181. }
  182. .order-item .goods-box-single .right .title .price {
  183. color: #fc4141;
  184. }
  185. .order-item .goods-box-single .right .font-da {
  186. font-size: 35rpx;
  187. font-weight: bold;
  188. }
  189. .order-item .goods-box-single .right .red {
  190. color: #fc4141;
  191. }
  192. .order-item .goods-box-single .right .attr-box {
  193. font-size: 24rpx;
  194. color: #666666;
  195. }
  196. .order-item .goods-box-single .right .attr-box .red {
  197. color: #e73932;
  198. }
  199. .order-item .goods-box-single .appointment {
  200. font-size: 30rpx;
  201. color: #6786fb;
  202. background: rgba(103, 134, 251, 0.18);
  203. border-radius: 5px;
  204. padding: 15rpx 25rpx;
  205. }
  206. .order-item .action-box {
  207. display: -webkit-box;
  208. display: -webkit-flex;
  209. display: flex;
  210. -webkit-box-pack: end;
  211. -webkit-justify-content: flex-end;
  212. justify-content: flex-end;
  213. -webkit-box-align: center;
  214. -webkit-align-items: center;
  215. align-items: center;
  216. position: relative;
  217. padding-top: 28rpx;
  218. }
  219. .order-item .action-btn {
  220. width: 160rpx;
  221. height: 60rpx;
  222. margin: 0;
  223. margin-left: 24rpx;
  224. padding: 0;
  225. text-align: center;
  226. line-height: 60rpx;
  227. font-size: 26rpx;
  228. color: #303133;
  229. background: #fff;
  230. border-radius: 100px;
  231. border: 2rpx solid #6786fb;
  232. color: #6786fb;
  233. }
  234. .order-item .row {
  235. display: -webkit-box;
  236. display: -webkit-flex;
  237. display: flex;
  238. -webkit-box-align: center;
  239. -webkit-align-items: center;
  240. align-items: center;
  241. font-size: 30rpx;
  242. position: relative;
  243. }
  244. .Search-box {
  245. overflow: hidden;
  246. width: 100%;
  247. padding: 20rpx;
  248. background-color: #ffffff;
  249. -webkit-justify-content: space-around;
  250. justify-content: space-around;
  251. }
  252. .Search-box .Search-box {
  253. width: 89%;
  254. height: 72rpx;
  255. border-radius: 36rpx;
  256. background-color: #f8f6f6;
  257. -webkit-box-pack: start;
  258. -webkit-justify-content: flex-start;
  259. justify-content: flex-start;
  260. padding-left: 54rpx;
  261. }
  262. .Search-box .Search-box .box-img {
  263. height: 30rpx;
  264. width: 30rpx;
  265. margin-right: 20rpx;
  266. }
  267. .Search-box .Search-box .box-word {
  268. font-size: 26rpx;
  269. font-weight: 500;
  270. color: #666666;
  271. }
  272. .Search-box .Search-word {
  273. width: 11%;
  274. font-size: 30rpx;
  275. font-weight: 500;
  276. color: #666666;
  277. }
  278. .Search-box .Search-word .word {
  279. float: right;
  280. }
  281. .second-part {
  282. padding: 20rpx;
  283. }
  284. .second-part .template {
  285. width: 100%;
  286. background: #ffffff;
  287. overflow: hidden;
  288. padding: 20rpx;
  289. box-shadow: 0px 5px 5px 0px rgba(35, 24, 21, 0.06);
  290. margin-bottom: 18rpx;
  291. border-radius: 12rpx;
  292. position: relative;
  293. }
  294. .second-part .template .left-img {
  295. width: 140rpx;
  296. float: left;
  297. overflow: hidden;
  298. }
  299. .second-part .template .left-img image {
  300. width: 140rpx;
  301. height: 140rpx;
  302. border-radius: 50%;
  303. }
  304. .second-part .template .center-word {
  305. width: 50%;
  306. padding-left: 25rpx;
  307. padding-right: 15rpx;
  308. }
  309. .second-part .template .center-word .one {
  310. font-size: 30rpx;
  311. font-weight: 500;
  312. color: #333;
  313. line-height: 36rpx;
  314. display: block;
  315. margin-bottom: 10rpx;
  316. }
  317. .second-part .template .center-word .two {
  318. font-size: 24rpx;
  319. font-weight: 500;
  320. color: #999999;
  321. line-height: 36rpx;
  322. display: block;
  323. }
  324. .second-part .template .right-label {
  325. padding: 16rpx;
  326. border: 1px solid #6786FB;
  327. border-radius: 7rpx;
  328. font-size: 23rpx;
  329. font-weight: 500;
  330. color: #6786FB;
  331. -webkit-box-align: center;
  332. -webkit-align-items: center;
  333. align-items: center;
  334. }
  335. .second-part .template .right-label image {
  336. width: 38rpx;
  337. height: 38rpx;
  338. margin-right: 8rpx;
  339. }
  340. .popup {
  341. width: 536rpx;
  342. }
  343. .popup .img {
  344. width: 100%;
  345. }
  346. .popup .row {
  347. background: #ffffff;
  348. padding: 45rpx 45rpx;
  349. border-radius: 25rpx;
  350. }
  351. .popup .row .row-1 {
  352. color: #323333;
  353. font-size: 36rpx;
  354. text-align: center;
  355. width: 100%;
  356. padding: 30rpx 0rpx;
  357. padding-bottom: 50rpx !important;
  358. }
  359. .popup .row .row-2 {
  360. background: #eaeaea;
  361. padding: 15rpx 25rpx;
  362. font-size: 26rpx;
  363. height: 80rpx;
  364. border-radius: 15rpx;
  365. }
  366. .popup .row .row-3 {
  367. width: 80%;
  368. margin: 20rpx auto;
  369. margin-top: 50rpx;
  370. background: -webkit-linear-gradient(bottom, #7e99fe, #978ffa);
  371. background: linear-gradient(0deg, #7e99fe, #978ffa);
  372. border-radius: 34rpx;
  373. -webkit-box-pack: center;
  374. -webkit-justify-content: center;
  375. justify-content: center;
  376. font-size: 36rpx;
  377. font-weight: 500;
  378. color: #f8f9f9;
  379. }
  380. .close_icon {
  381. width: 52rpx;
  382. height: 52rpx;
  383. margin: 88rpx auto 0;
  384. }
  385. .close_icon image {
  386. width: 100%;
  387. height: 100%;
  388. }
  389. .pay-type-list {
  390. margin-top: 20rpx;
  391. background-color: #fff;
  392. padding-left: 40rpx;
  393. }
  394. .pay-type-list .type-item {
  395. height: 120rpx;
  396. padding: 20rpx 0;
  397. display: -webkit-box;
  398. display: -webkit-flex;
  399. display: flex;
  400. -webkit-box-pack: justify;
  401. -webkit-justify-content: space-between;
  402. justify-content: space-between;
  403. -webkit-box-align: center;
  404. -webkit-align-items: center;
  405. align-items: center;
  406. padding-right: 60rpx;
  407. font-size: 30rpx;
  408. position: relative;
  409. }
  410. .pay-type-list .icon {
  411. width: 100rpx;
  412. font-size: 52rpx;
  413. }
  414. .pay-type-list .img {
  415. color: #fe8e2e;
  416. width: 50rpx;
  417. height: 50rpx;
  418. }
  419. .pay-type-list .img image {
  420. width: 100%;
  421. height: 100%;
  422. }
  423. .pay-type-list .tit {
  424. font-size: 32rpx;
  425. color: #303133;
  426. margin-bottom: 4rpx;
  427. }
  428. .pay-type-list .con {
  429. -webkit-box-flex: 1;
  430. -webkit-flex: 1;
  431. flex: 1;
  432. display: -webkit-box;
  433. display: -webkit-flex;
  434. display: flex;
  435. -webkit-box-orient: vertical;
  436. -webkit-box-direction: normal;
  437. -webkit-flex-direction: column;
  438. flex-direction: column;
  439. padding-left: 25rpx;
  440. font-size: 24rpx;
  441. color: #909399;
  442. }
  443. .payment {
  444. background-color: #ffffff;
  445. border-radius: 15rpx 15rpx 0rpx 0rpx;
  446. z-index: 999;
  447. }
  448. .payment .first {
  449. border-bottom: 2rpx solid #ebeef5;
  450. padding: 38rpx 25rpx;
  451. }
  452. .payment .first .word {
  453. font-size: 28rpx;
  454. font-weight: bold;
  455. color: #303133;
  456. }
  457. .payment .first image {
  458. width: 25rpx;
  459. height: 25rpx;
  460. }
  461. .payment .one {
  462. height: 20rpx;
  463. background-color: #f6f6f6;
  464. }
  465. .payment .Third .two1 {
  466. width: 55%;
  467. background-color: #ffffff;
  468. padding-left: 25rpx;
  469. }
  470. .payment .Third .two1 .two1-1 {
  471. font-size: 28rpx;
  472. font-weight: 400;
  473. color: #303133;
  474. }
  475. .payment .Third .two1 .two1-2 {
  476. font-size: 24rpx;
  477. font-weight: bold;
  478. color: #FC4141;
  479. }
  480. .payment .Third .two1 .size {
  481. font-size: 36rpx;
  482. }
  483. .payment .Third .two2 {
  484. width: 45%;
  485. background: #FC4141;
  486. color: #ffffff;
  487. font-size: 32rpx;
  488. font-weight: 550;
  489. text-align: center;
  490. padding: 30rpx 0rpx;
  491. }
  492. .payment .Third .clickbg {
  493. background-color: #999999 !important;
  494. }