report.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .page-container {
  2. background-color: #f3f3f3;
  3. padding-top: 10px;
  4. height: calc(100vh - 44px);
  5. box-sizing: border-box;
  6. -webkit-overflow-scrolling: touch;
  7. .follow-box {
  8. display: flex;
  9. align-items: center;
  10. background-color: #fff;
  11. padding: 10px 16px;
  12. font-size: 16px;
  13. .title {
  14. color: #666;
  15. min-width: 80px;
  16. flex-shrink: 0;
  17. }
  18. .content {
  19. color: #000000;
  20. margin-left:7px;
  21. flex: 1;
  22. line-height: 1.5;
  23. word-break: break-all;
  24. }
  25. }
  26. .follow-record {
  27. color: #000000;
  28. font-size: 16px;
  29. font-weight: bold;
  30. margin: 10px 0px 10px 15px;
  31. }
  32. .time-box {
  33. width: 100%;
  34. height: 34px;
  35. line-height: 34px;
  36. color: #000000;
  37. font-size: 14px;
  38. background-color: #e4e6ff;
  39. padding-left: 10px;
  40. font-weight: bold;
  41. }
  42. .record-box {
  43. background-color: #fff;
  44. padding: 10px 16px;
  45. border-radius: 8px;
  46. .new-symptoms {
  47. margin-bottom: 20px;
  48. }
  49. .questions {
  50. margin-bottom: 10px;
  51. }
  52. .sym-center {
  53. margin-top: 10px;
  54. margin-bottom: 10px;
  55. }
  56. .symptoms {
  57. margin-left: 20px;
  58. display: flex !important;
  59. .improved {
  60. color: #909090;
  61. font-size: 16px;
  62. width: 80px;
  63. }
  64. }
  65. .image-box {
  66. display: flex;
  67. flex-direction: row;
  68. align-items: center;
  69. justify-content: space-between;
  70. margin-top: 20px;
  71. margin-bottom: 10px;
  72. .tongue__img {
  73. width: 30%;
  74. height: 100px;
  75. object-fit: cover;
  76. border-radius: 8px;
  77. // border: 1px solid #000000;
  78. }
  79. }
  80. .report-box {
  81. width: 98%;
  82. height: 40px;
  83. margin: 0 auto;
  84. display: flex;
  85. align-items: center;
  86. justify-content: center;
  87. background: #d6e1f3;
  88. border-radius: 8px;
  89. font-size: 15px;
  90. color: #1F457F;
  91. font-weight: bold;
  92. .icon-bg {
  93. width: 20px;
  94. height: 20px;
  95. margin-right: 5px;
  96. }
  97. }
  98. }
  99. }