medical-waste-trend-analysis.component.less 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. @import "../../../../src/theme.less";
  2. :host {
  3. .quiltWashingTrendAnalysis ::ng-deep .ant-table-small > .ant-table-content > .ant-table-body{
  4. margin: 0;
  5. }
  6. .quiltWashingTrendAnalysis ::ng-deep thead{
  7. background-color: #F9F9FB;
  8. border-bottom: none;
  9. }
  10. .quiltWashingTrendAnalysis{
  11. min-height: 100%;
  12. background-color: #F1F2F2;
  13. .main{
  14. margin-left: 10px;
  15. .head{
  16. margin-top: 8px;
  17. height: 60px;
  18. background-color: #fff;
  19. display: flex;
  20. align-items: center;
  21. justify-content: space-between;
  22. padding: 0 16px;
  23. .search{
  24. display: flex;
  25. .searchItem{
  26. margin-left: 16px;
  27. &:first-of-type{
  28. margin-left: 0;
  29. }
  30. }
  31. }
  32. .btns{
  33. display: flex;
  34. }
  35. }
  36. .body{
  37. margin-top: 8px;
  38. background-color: #fff;
  39. padding-bottom: 30px;
  40. .body_tabs_wrap{
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. .body_tabs{
  45. display: flex;
  46. .tab{
  47. width: 106px;
  48. height: 50px;
  49. display: flex;
  50. justify-content: center;
  51. align-items: center;
  52. background-color: #F9FAFB;
  53. color: #6E6E6E;
  54. font-size: 22px;
  55. font-weight: bold;
  56. cursor: pointer;
  57. &.active{
  58. background-color: @primary-color;
  59. color: #fff;
  60. }
  61. }
  62. }
  63. .compareDate{
  64. font-size: 22px;
  65. font-weight: bold;
  66. margin-right: 24px;
  67. }
  68. }
  69. .total{
  70. height: 105px;
  71. padding: 0 16px;
  72. border-bottom: 1px solid #CECECE;
  73. display: flex;
  74. justify-content: space-between;
  75. align-items:center;
  76. .total_list{
  77. flex: 1;
  78. display: flex;
  79. justify-content: space-between;
  80. align-items:center;
  81. padding-right: 30px;
  82. position: relative;
  83. &:after{
  84. content: '';
  85. position:absolute;
  86. right: -1px;
  87. top: 50%;
  88. transform: translateY(-50%);
  89. width: 2px;
  90. height: 42px;
  91. background-color: #D9D9D9;
  92. }
  93. &:last-of-type{
  94. padding-left: 30px;
  95. &:after{
  96. display: none;
  97. }
  98. }
  99. .total_item{
  100. display: flex;
  101. flex-direction: column;
  102. align-items: center;
  103. .name{
  104. font-size: 32px;
  105. font-weight: bold;
  106. &.green{
  107. color: @primary-color;
  108. }
  109. &.red{
  110. color: red;
  111. }
  112. }
  113. .value{
  114. font-size: 16px;
  115. color: #8F8F8F;
  116. }
  117. }
  118. }
  119. }
  120. .boxwrap{
  121. display: flex;
  122. .box{
  123. flex: 1;
  124. margin: 0 8px;
  125. .box-head{
  126. height: 46px;
  127. padding: 0 24px;
  128. display: flex;
  129. align-items: center;
  130. font-size: 16px;
  131. font-weight: bold;
  132. position: relative;
  133. &:before{
  134. content: '';
  135. width: 10px;
  136. height: 10px;
  137. border-radius: 50%;
  138. background-color: @primary-color;
  139. position: absolute;
  140. top: 50%;
  141. left: 8px;
  142. transform: translateY(-50%);
  143. }
  144. }
  145. .table{
  146. th,td{
  147. text-align: center;
  148. }
  149. }
  150. }
  151. }
  152. .echarts{
  153. flex: 1;
  154. margin: 0 8px;
  155. .echart-head{
  156. height: 46px;
  157. padding: 0 24px;
  158. display: flex;
  159. align-items: center;
  160. font-size: 16px;
  161. font-weight: bold;
  162. position: relative;
  163. &:before{
  164. content: '';
  165. width: 10px;
  166. height: 10px;
  167. border-radius: 50%;
  168. background-color: @primary-color;
  169. position: absolute;
  170. top: 50%;
  171. left: 8px;
  172. transform: translateY(-50%);
  173. }
  174. }
  175. .echart{
  176. }
  177. }
  178. }
  179. }
  180. }
  181. }