index.less 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. .item1 {
  63. width: 585px;
  64. height: 72px;
  65. padding-left: 64px;
  66. white-space: nowrap;
  67. line-height: 60px;
  68. margin-bottom: 6px;
  69. background: url('@/assets/smartOps/icon01.png') no-repeat center;
  70. background-size: 100% 100%;
  71. }
  72. .item2 {
  73. width: 527px;
  74. height: 72px;
  75. padding-left: 24px;
  76. white-space: nowrap;
  77. line-height: 60px;
  78. margin-bottom: 6px;
  79. background: url('@/assets/smartOps/icon02.png') no-repeat center;
  80. background-size: 100% 100%;
  81. }
  82. .item3 {
  83. background: url('@/assets/smartOps/icon03.png') no-repeat center;
  84. background-size: 100% 100%;
  85. width: 581px;
  86. height: 60px;
  87. padding-left: 64px;
  88. white-space: nowrap;
  89. line-height: 60px;
  90. }
  91. }
  92. }
  93. .text {
  94. padding: 8px 20px;
  95. line-height: 24px;
  96. font-size: 24px;
  97. color: #4a90e2;
  98. // text-align: center;
  99. }
  100. }
  101. .anaBtn {
  102. font-size: 12px !important;
  103. padding: 6px;
  104. line-height: 12px;
  105. height: auto !important;
  106. }
  107. @keyframes spin {
  108. from {
  109. transform: rotate(0deg);
  110. }
  111. to {
  112. transform: rotate(360deg);
  113. }
  114. }
  115. @keyframes scaleUp {
  116. 0% {
  117. transform: translate(0px, 0px);
  118. }
  119. 25% {
  120. transform: translate(0px, -5px);
  121. }
  122. 75% {
  123. transform: translate(0px, 5px);
  124. }
  125. 100% {
  126. transform: translate(0px, 0px);
  127. }
  128. }
  129. .marginBottom {
  130. margin-bottom: 20px;
  131. }
  132. .marginLeft {
  133. margin-left: 20px;
  134. }
  135. .marginRight {
  136. margin-right: 20px;
  137. }
  138. .searchContent {
  139. display: flex;
  140. align-items: center;
  141. margin-bottom: 20px;
  142. color: #4a4a4a;
  143. font-size: 24px;
  144. white-space: nowrap;
  145. margin-top: 40px;
  146. :global {
  147. .ant-select {
  148. margin: 0 40px 0 10px;
  149. // background-color: #284e83;
  150. }
  151. }
  152. }
  153. .timePicker {
  154. // background-color: #284e83;
  155. }
  156. .form {
  157. width: 100%;
  158. margin-bottom: 14px;
  159. display: flex;
  160. align-items: center;
  161. justify-content: space-between;
  162. }
  163. .tableSelect {
  164. background: rgba(145, 192, 238, 0.16) !important;
  165. }
  166. .tabContent {
  167. :global {
  168. .ant-table-tbody > tr:nth-child(even) {
  169. background: inherit;
  170. }
  171. }
  172. }