index.less 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. .topContent {
  2. padding: 8px 12px;
  3. margin: 16px 0;
  4. color: #1c50b3;
  5. font-size: 28px;
  6. .titleContent {
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. .time {
  11. // font-size: 20px;
  12. color: #6e6e6e;
  13. }
  14. .iconLeft {
  15. width: 38px;
  16. height: 38px;
  17. background: url('@/assets/smartOps/icon06.png') no-repeat center;
  18. background-size: 100% 100%;
  19. }
  20. .iconRight {
  21. .iconLeft;
  22. margin-left: 20px;
  23. background: url('@/assets/smartOps/icon07.png') no-repeat center;
  24. background-size: 100% 100%;
  25. }
  26. }
  27. .middle {
  28. margin: 10px 0;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. .left {
  33. position: relative;
  34. .in {
  35. width: 212px;
  36. height: 212px;
  37. background: url('@/assets/smartOps/icon04.png') no-repeat center;
  38. background-size: 100% 100%;
  39. animation-name: scaleUp;
  40. animation-duration: 5s;
  41. animation-iteration-count: infinite;
  42. animation-timing-function: linear;
  43. }
  44. .out {
  45. position: absolute;
  46. left: 0;
  47. top: 0;
  48. width: 212px;
  49. height: 212px;
  50. background: url('@/assets/smartOps/icon05.png') no-repeat center;
  51. background-size: 100% 100%;
  52. animation-name: spin;
  53. animation-duration: 30s;
  54. animation-iteration-count: infinite;
  55. animation-timing-function: linear;
  56. }
  57. }
  58. .right {
  59. display: flex;
  60. flex-direction: column;
  61. align-items: flex-end;
  62. .item {
  63. width: 585px;
  64. height: 52px;
  65. white-space: nowrap;
  66. margin-bottom: 10px;
  67. background: url('@/assets/smartOps/icon01.png') no-repeat center;
  68. background-size: 100% 100%;
  69. line-height: 52px;
  70. }
  71. .item1 {
  72. .item;
  73. padding-left: 96px;
  74. }
  75. .item2 {
  76. .item;
  77. width: 527px;
  78. padding-left: 40px;
  79. background-image: url('@/assets/smartOps/icon02.png');
  80. }
  81. .item3 {
  82. .item;
  83. width: 527px;
  84. padding-left: 40px;
  85. background-image: url('@/assets/smartOps/icon03.png');
  86. }
  87. .item4 {
  88. .item;
  89. margin-bottom: 0;
  90. padding-left: 96px;
  91. background-image: url('@/assets/smartOps/icon08.png');
  92. }
  93. }
  94. }
  95. .text {
  96. padding: 8px 20px;
  97. line-height: 24px;
  98. font-size: 24px;
  99. color: #4a90e2;
  100. // text-align: center;
  101. }
  102. }
  103. .anaBtn {
  104. font-size: 12px !important;
  105. padding: 6px;
  106. line-height: 12px;
  107. height: auto !important;
  108. }
  109. @keyframes spin {
  110. from {
  111. transform: rotate(0deg);
  112. }
  113. to {
  114. transform: rotate(360deg);
  115. }
  116. }
  117. @keyframes scaleUp {
  118. 0% {
  119. transform: translate(0px, 0px);
  120. }
  121. 25% {
  122. transform: translate(0px, -5px);
  123. }
  124. 75% {
  125. transform: translate(0px, 5px);
  126. }
  127. 100% {
  128. transform: translate(0px, 0px);
  129. }
  130. }
  131. .marginBottom {
  132. margin-bottom: 20px;
  133. }
  134. .marginLeft {
  135. margin-left: 20px;
  136. }
  137. .marginRight {
  138. margin-right: 20px;
  139. }
  140. .searchContent {
  141. display: flex;
  142. align-items: center;
  143. margin-bottom: 20px;
  144. color: #4a4a4a;
  145. font-size: 24px;
  146. white-space: nowrap;
  147. margin-top: 40px;
  148. :global {
  149. .ant-select {
  150. margin: 0 40px 0 10px;
  151. // background-color: #284e83;
  152. }
  153. }
  154. }
  155. .timePicker {
  156. // background-color: #284e83;
  157. }
  158. .form {
  159. width: calc(100% - 35px);
  160. margin-bottom: 14px;
  161. display: flex;
  162. align-items: center;
  163. justify-content: space-between;
  164. }
  165. .tableSelect {
  166. background: rgba(145, 192, 238, 0.16) !important;
  167. }
  168. .tabContent {
  169. :global {
  170. .ant-table-tbody > tr:nth-child(even) {
  171. background: inherit;
  172. }
  173. }
  174. }