card-analysis-content.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. @import "../../../../themes/t.cell.scss";
  2. @import "../../report-common.scss";
  3. @import "../../../../themes/card.scss";
  4. /* module/health/components/card-analysis/card-analysis-content.wxss */
  5. .togue-title{
  6. font-size: 16px;
  7. color: black;
  8. font-weight: 500;
  9. text-align: center;
  10. width: 100%;
  11. height: 50px;
  12. line-height: 50px;
  13. background-color: white;
  14. border-radius: 10px 10px 0 0;
  15. }
  16. .picture-container {
  17. display: flex;
  18. margin: 20px 0;
  19. align-items: center;
  20. .body-image {
  21. width: 200px;
  22. height: auto;
  23. margin-bottom: 20px;
  24. }
  25. .picture-wrapper {
  26. display: flex;
  27. gap: 10px;
  28. image {
  29. width: 120px;
  30. height: 120px;
  31. border-radius: 10px;
  32. object-fit: cover;
  33. }
  34. }
  35. }
  36. .tongue-label {
  37. position: absolute;
  38. color: #666;
  39. font-size: 14px;
  40. }
  41. .tongue-top {
  42. top: 20%;
  43. right: 0;
  44. }
  45. .tongue-bottom {
  46. bottom: 20%;
  47. right: 0;
  48. }
  49. .picture-container{
  50. display: flex;
  51. align-items: center;
  52. justify-content: center;
  53. }
  54. .body-image{
  55. width: 200px;
  56. }
  57. .tongue-right{
  58. display: flex;
  59. align-items: center;
  60. }
  61. .tongue-container{
  62. padding: 0px 5px 0px 5px;
  63. }
  64. // padding: var(--td-cell-horizontal-padding, 32rpx) !important;
  65. // background: linear-gradient(180deg, #D6E4F5 0%, #F3F4F6 100%);
  66. .constitution-container{
  67. border-radius: 0 0 10px 10px;
  68. }
  69. .card-title{
  70. display: flex;
  71. align-items: center;
  72. justify-content: space-between;
  73. margin-bottom: 20rpx;
  74. }
  75. .text-title{
  76. font-size: 16px;
  77. color: black;
  78. font-weight: 500;
  79. }
  80. .icon-title{
  81. width: 20px;
  82. height: 20px;
  83. margin-right: 10rpx;
  84. }
  85. .talbel-wrapper {
  86. $border: 1px solid transparent;
  87. margin-top: 12px;
  88. border: $border;
  89. border-radius: 8px;
  90. .tr {
  91. display: flex;
  92. flex-direction: row;
  93. align-items: center;
  94. .td ,.th{
  95. text-align: center;
  96. }
  97. &+.tr {
  98. border-top: $border;
  99. }
  100. &.exception .td:nth-child(2) {
  101. color: #FF4D4F;
  102. }
  103. &.invalid .td:nth-child(2) {
  104. color: #aaa;
  105. }
  106. }
  107. .th {
  108. // color: #fff;
  109. font-weight: 500;
  110. background-color: #B4D1FF;
  111. &:first-child {
  112. // background-color: #EFF4F9;
  113. background-color: #B4D1FF;
  114. border-radius: 10px 0 0 0;
  115. }
  116. }
  117. .th,
  118. .td {
  119. // display: flex;
  120. text-align: center;
  121. word-break: break-all;
  122. white-space: pre-wrap;
  123. &:nth-child(1) {
  124. flex: 0 0 100px;
  125. border-radius: 20px 0px 0px 20px;
  126. }
  127. &:nth-child(2) {
  128. flex: auto;
  129. border-left: $border;
  130. border-right: $border;
  131. }
  132. &:nth-child(3) {
  133. flex: 0 0 100px;
  134. border-radius: 0 20px 20px 0px;
  135. }
  136. }
  137. }
  138. .picture-wrapper {
  139. display: flex;
  140. flex-direction: column;
  141. justify-content: center;
  142. align-items: center;
  143. image {
  144. margin: 6px;
  145. width: 128px;
  146. height: 128px;
  147. }
  148. }