report.scss 1.3 KB

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