index.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .health-status-list {
  2. display: flex;
  3. flex-direction: column;
  4. padding: 24rpx 0;
  5. // margin-left: 50rpx;
  6. // margin-top: 24rpx;
  7. }
  8. .health-status-item {
  9. display: flex;
  10. align-items: baseline;
  11. position: relative;
  12. min-height: 60rpx;
  13. }
  14. .dot-line-box {
  15. position: relative;
  16. width: 24rpx;
  17. margin-right: 16rpx;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. }
  22. .dot {
  23. width: 10rpx;
  24. height: 10rpx;
  25. border: 4rpx solid #3A7BFF;
  26. border-radius: 50%;
  27. background: #fff;
  28. z-index: 1;
  29. }
  30. .dashed-line {
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. width: 2rpx;
  35. height: 100%;
  36. margin-top: 0;
  37. }
  38. .dash {
  39. width: 2rpx;
  40. height: 10rpx;
  41. background: #3A7BFF;
  42. margin-bottom: 4rpx;
  43. border-radius: 1rpx;
  44. }
  45. .status-content {
  46. color: #666666;
  47. font-size: 28rpx;
  48. line-height: 1.7;
  49. padding-bottom: 8rpx;
  50. word-break: break-all;
  51. }
  52. .status-line {
  53. // display: block;
  54. display: flex ;
  55. align-items: center;
  56. line-height: 1.7;
  57. word-break: break-all;
  58. color: rgba(106,106,106,0.8);
  59. }
  60. .title{
  61. font-size: 28rpx;
  62. color: #6F7D97;
  63. }
  64. .value{
  65. font-size: 28rpx;
  66. color: #4E5F7E;
  67. font-weight: 450;
  68. }
  69. .report-container{
  70. width: 100%;
  71. display: flex;
  72. align-items: center;
  73. justify-content: center;
  74. .report-box {
  75. display: flex;
  76. align-items: center;
  77. height: 40px;
  78. line-height: 48px;
  79. justify-content: center;
  80. background: #D6E5FB;
  81. width: 95%;
  82. border-radius: 6px;
  83. margin: auto;
  84. .report-img {
  85. width: 38rpx;
  86. height: 35rpx;
  87. }
  88. .text-box {
  89. display: flex;
  90. .text-one {
  91. font-size: 28rpx;
  92. color: #1F457F;
  93. font-weight: bold;
  94. margin: 0 20rpx 0 20rpx;
  95. }
  96. .text-two {
  97. font-size: 24rpx;
  98. color: #35578C;
  99. }
  100. }
  101. }
  102. }