report-health-patient.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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;
  87. }
  88. }
  89. .tag-row {
  90. display: block;
  91. line-height: 1.6;
  92. margin-bottom: 5px;
  93. .tag-row__label {
  94. display: inline-block;
  95. vertical-align: middle;
  96. white-space: nowrap;
  97. color: #8c8c8c;
  98. margin-right: 8px;
  99. }
  100. t-tag {
  101. display: inline-block;
  102. vertical-align: middle;
  103. margin: 0 8px 12px 0;
  104. }
  105. }
  106. }
  107. .text-item+.text-item::before {
  108. content: ',';
  109. }
  110. .primary {
  111. // color: #34A76B;
  112. color:#191919;
  113. }
  114. .tag + .tag {
  115. margin-left: 4px;
  116. }