report-health-patient.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. @import "../../../../themes/t.cell.scss";
  2. @import "../../report-common.scss";
  3. @import "../../../../themes/card.scss";
  4. /* module/health/components/report-health-patient/report-health-patient.wxss */
  5. .user-image {
  6. width: 104px;
  7. height:104px;
  8. border-radius: 10px;
  9. margin-right: 10px;
  10. }
  11. .card-box {
  12. display: flex;
  13. align-items: center;
  14. justify-content: space-between;
  15. height: 40px;
  16. padding: 0 10px 0px 10px;
  17. }
  18. .basic-info{
  19. color: black;
  20. font-weight: 500;
  21. }
  22. .card-body {
  23. .row+.row {
  24. margin-top: 8px;
  25. }
  26. }
  27. .text-item{
  28. color: #191919;
  29. }
  30. .text-items{
  31. display: flex;
  32. color: #191919;
  33. }
  34. .patient-info-content {
  35. --td-cell-description-color: #fff;
  36. --td-cell-description-font-size: 12px;
  37. display: flex;
  38. flex-direction: row;
  39. align-items: center;
  40. font-size: 14px;
  41. .avatar {
  42. flex: none;
  43. margin-right: 8px;
  44. }
  45. .content {
  46. flex: auto;
  47. }
  48. .title {
  49. font-size: 16px;
  50. color: #191919;
  51. font-weight: bold;
  52. }
  53. }
  54. .patient-data-wrapper {
  55. width: 94% !important;
  56. margin: auto;
  57. background: white !important;
  58. // padding: 0px 20px 10px 20px;
  59. .body-box {
  60. display: flex;
  61. flex-direction: row;
  62. align-items: center;
  63. background-color: #F9F9F9;
  64. padding: var(--td-cell-vertical-padding, 32rpx) var(--td-cell-horizontal-padding, 32rpx);
  65. font-size: 14px;
  66. border-radius: 0 0 12px 12px;
  67. .content-wrapper {
  68. flex: auto;
  69. }
  70. .image-wrapper {
  71. flex: none;
  72. width: 100px;
  73. height: 100px;
  74. margin-right: 13px;
  75. border-radius: 10px;
  76. }
  77. }
  78. .row {
  79. display: flex;
  80. column-gap: 12px;
  81. .col {
  82. flex: 1 1 50%;
  83. display: flex;
  84. align-items: center;
  85. white-space: nowrap; /* 防止真机 50% 宽度下换行 */
  86. min-width: 0; /* 修复部分机型 flex 子项计算导致的换行 */
  87. }
  88. }
  89. }
  90. .text-item+.text-item::before {
  91. content: ',';
  92. }
  93. .primary {
  94. // color: #34A76B;
  95. color:#191919;
  96. }
  97. .tag + .tag {
  98. margin-left: 4px;
  99. }