report.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. @import '../../../../themes/page.scss';
  2. @import "../../../../themes/t.cell.scss";
  3. @import "../../report-common.scss";
  4. @import "../../../../themes/card.scss";
  5. /* module/health/pages/report/report.wxss */
  6. .card-body.report-wrapper {
  7. display: flex;
  8. flex-direction: row;
  9. align-items: center;
  10. .content-wrapper {
  11. flex: auto;
  12. }
  13. .image-wrapper {
  14. flex: none;
  15. width: 128px;
  16. height: 128px;
  17. margin-left: 8px;
  18. }
  19. }
  20. .talbel-wrapper {
  21. $border: 1px solid#999;
  22. margin-top: 12px;
  23. border: $border;
  24. border-radius: 8px;
  25. .talbel-row {
  26. display: flex;
  27. flex-direction: row;
  28. align-items: center;
  29. &+.talbel-row {
  30. border-top: $border;
  31. }
  32. &.title {
  33. font-weight: 600;
  34. }
  35. .label {
  36. flex: none;
  37. padding: 4px;
  38. width: 100px;
  39. }
  40. .value {
  41. flex: 2 2 50%;
  42. min-height: 28px;
  43. padding: 4px;
  44. border-left: $border;
  45. box-sizing: border-box;
  46. }
  47. }
  48. &.t-2 {
  49. .value {
  50. border-left: none;
  51. }
  52. .v-1 {
  53. border-left: $border;
  54. border-right: $border;
  55. }
  56. }
  57. }
  58. .picture-wrapper {
  59. display: flex;
  60. flex-direction: row;
  61. justify-content: center;
  62. image {
  63. margin: 12px;
  64. width: 128px;
  65. height: 128px;
  66. }
  67. }
  68. .notification-wrapper {
  69. display: flex;
  70. flex-direction: row;
  71. justify-content: center;
  72. align-items: center;
  73. color: #34A76B;
  74. font-weight: 700;
  75. .icon {
  76. color: #FF611B;
  77. margin-right: 8px;
  78. }
  79. }