report-health-status.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. @import "../../../../themes/t.cell.scss";
  2. @import "../../report-common.scss";
  3. @import "../../../../themes/card.scss";
  4. @import '../../../../themes/draggable-sheet.scss';
  5. /* module/health/components/report-health-status/report-health-status.wxss */
  6. .status-box{
  7. font-size: 16px;
  8. font-weight: bold;
  9. color: black;
  10. width: 95%;
  11. }
  12. .status-content{
  13. width: 100%;
  14. white-space: pre-wrap;
  15. text-align: center;
  16. }
  17. .title-box{
  18. font-size: 16px;
  19. font-weight: bold;
  20. color: black !important;
  21. }
  22. .health-title{
  23. display: flex;
  24. align-items: center;
  25. }
  26. .tongue-box{
  27. border-radius: 0px 0px 10px 10px !important;
  28. }
  29. .status-data-wrapper {
  30. font-size: 12px;
  31. }
  32. .icon{
  33. width: 23px;
  34. height: 23px;
  35. margin-right: 10rpx;
  36. }
  37. .report-box {
  38. display: flex;
  39. align-items: center;
  40. height: 30px;
  41. justify-content: space-between;
  42. padding: 10px;
  43. background-image: url('https://wx.hzliuzhi.com:4433/manager/file/statics/2025/08/21/WechatIMG731_20250821155626A830.jpg');
  44. background-size: cover;
  45. background-position: center;
  46. }
  47. .report-data-wrapper {
  48. // background: linear-gradient(180deg, #D6E4F5 0%, #F3F4F6 100%);
  49. background: linear-gradient(180deg, #D6E4F5 0%, #F5F6F7 100%);
  50. font-size: 14px;
  51. border-radius: 20px;
  52. width: 100%;
  53. margin:auto;
  54. .card-body {
  55. display: flex;
  56. flex-direction: row;
  57. align-items: center;
  58. .content-wrapper {
  59. flex: auto;
  60. }
  61. .image-wrapper {
  62. flex: none;
  63. width: 128px;
  64. height: 128px;
  65. margin-left: 10px;
  66. border-radius: 10px;
  67. }
  68. }
  69. .title {
  70. text-align: center;
  71. }
  72. .primary {
  73. // color: #34A76B;
  74. color: #1D6FF6;
  75. }
  76. }
  77. .text-item+.text-item::before {
  78. content: ',';
  79. }
  80. .status-title{
  81. width: 100%;
  82. font-size: 16px;
  83. font-weight: bold;
  84. color: black;
  85. height: 50px;
  86. line-height: 50px;
  87. text-align: center;
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. }
  92. .card-container{
  93. background-color: #F8FAFD;
  94. border-radius: 10px;
  95. width: 94%;
  96. margin: auto auto 10px auto;
  97. }
  98. .report-content{
  99. display: flex;
  100. flex-direction: column;
  101. align-items: center;
  102. justify-content: space-between;
  103. padding: 10px 16px;
  104. }
  105. .nodata-box{
  106. width: 94%;
  107. margin: auto;
  108. border-top: 1px solid #E7E7E7;
  109. padding-top: 10px;
  110. }