quilt-washing-trend-analysis.component.less 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. }
  110. .value{
  111. font-size: 16px;
  112. color: #8F8F8F;
  113. }
  114. }
  115. }
  116. }
  117. .boxwrap{
  118. display: flex;
  119. .box{
  120. flex: 1;
  121. margin: 0 8px;
  122. .box-head{
  123. height: 46px;
  124. padding: 0 24px;
  125. display: flex;
  126. align-items: center;
  127. font-size: 16px;
  128. font-weight: bold;
  129. position: relative;
  130. &:before{
  131. content: '';
  132. width: 10px;
  133. height: 10px;
  134. border-radius: 50%;
  135. background-color: @primary-color;
  136. position: absolute;
  137. top: 50%;
  138. left: 8px;
  139. transform: translateY(-50%);
  140. }
  141. }
  142. .table{
  143. th,td{
  144. text-align: center;
  145. }
  146. }
  147. }
  148. }
  149. .echarts{
  150. flex: 1;
  151. margin: 0 8px;
  152. .echart-head{
  153. height: 46px;
  154. padding: 0 24px;
  155. display: flex;
  156. align-items: center;
  157. font-size: 16px;
  158. font-weight: bold;
  159. position: relative;
  160. &:before{
  161. content: '';
  162. width: 10px;
  163. height: 10px;
  164. border-radius: 50%;
  165. background-color: @primary-color;
  166. position: absolute;
  167. top: 50%;
  168. left: 8px;
  169. transform: translateY(-50%);
  170. }
  171. }
  172. .echart{
  173. }
  174. }
  175. }
  176. }
  177. }
  178. }