offlineTreatment.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .page-container {
  2. background-color: #f3f3f3;
  3. padding-top: 10px;
  4. height: calc(100vh - 44px);
  5. box-sizing: border-box;
  6. -webkit-overflow-scrolling: touch;
  7. }
  8. .offline-treatment-page {
  9. background: #f6f7fa;
  10. min-height: 100vh;
  11. }
  12. .page-container {
  13. padding: 24rpx 0;
  14. }
  15. .treatment-card {
  16. background: #fff;
  17. border-radius: 16rpx;
  18. margin: 0 24rpx 24rpx 24rpx;
  19. padding: 24rpx 24rpx 18rpx 24rpx;
  20. box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.03);
  21. }
  22. .treatment-title {
  23. font-size: 28rpx;
  24. font-weight: 500;
  25. color: #222;
  26. margin-bottom: 12rpx;
  27. }
  28. .treatment-row {
  29. font-size: 26rpx;
  30. color: #666;
  31. margin-bottom: 8rpx;
  32. display: flex;
  33. flex-wrap: wrap;
  34. }
  35. .label {
  36. color: black;
  37. margin-right: 8rpx;
  38. }
  39. .treatment-detail-card {
  40. display: flex;
  41. justify-content: space-between;
  42. align-items: center;
  43. background: #fff;
  44. border-radius: 16rpx;
  45. margin: 0 24rpx 32rpx 24rpx;
  46. padding: 24rpx 54rpx 18rpx 24rpx;
  47. box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.03);
  48. font-size: 28rpx;
  49. }
  50. .row {
  51. display: flex;
  52. align-items: center;
  53. color: #222;
  54. font-size: 28rpx;
  55. margin-bottom: 20rpx;
  56. }
  57. .between {
  58. justify-content: space-between;
  59. }
  60. .bold {
  61. font-weight: 600;
  62. }
  63. .status {
  64. font-size: 28rpx;
  65. font-weight: 500;
  66. margin-bottom: 20rpx;
  67. }
  68. .status.done {
  69. color: #43A047;
  70. margin-left: 16rpx;
  71. }
  72. .count {
  73. margin-left: 16rpx;
  74. color: #222;
  75. }
  76. .divider {
  77. height: 1rpx;
  78. background: #eee;
  79. margin: 18rpx 0;
  80. }
  81. .sub-label {
  82. color: #bbb;
  83. }