index.less 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. .topContent {
  2. padding: 0.08rem 0.12rem;
  3. margin: 0.16rem 0;
  4. color: #1c50b3;
  5. font-size: 0.28rem;
  6. .titleContent {
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. .time {
  11. // font-size: 0.2rem;
  12. color: #6e6e6e;
  13. }
  14. .iconLeft {
  15. width: 0.38rem;
  16. height: 0.38rem;
  17. background: url('@/assets/smartOps/icon06.png') no-repeat center;
  18. background-size: 100% 100%;
  19. }
  20. .iconRight {
  21. .iconLeft;
  22. margin-left: 0.2rem;
  23. background: url('@/assets/smartOps/icon07.png') no-repeat center;
  24. background-size: 100% 100%;
  25. }
  26. }
  27. .middle {
  28. margin: 0.1rem 0;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. .left {
  33. position: relative;
  34. .in {
  35. width: 2.12rem;
  36. height: 2.12rem;
  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: 2.12rem;
  49. height: 2.12rem;
  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: 5.85rem;
  64. height: 0.52rem;
  65. white-space: nowrap;
  66. margin-bottom: 0.1rem;
  67. background: url('@/assets/smartOps/icon01.png') no-repeat center;
  68. background-size: 100% 100%;
  69. line-height: 0.52rem;
  70. }
  71. .item1 {
  72. .item;
  73. padding-left: 0.96rem;
  74. }
  75. .item2 {
  76. .item;
  77. width: 5.27rem;
  78. padding-left: 0.4rem;
  79. background-image: url('@/assets/smartOps/icon02.png');
  80. }
  81. .item3 {
  82. .item;
  83. width: 5.27rem;
  84. padding-left: 0.4rem;
  85. background-image: url('@/assets/smartOps/icon03.png');
  86. }
  87. .item4 {
  88. .item;
  89. margin-bottom: 0;
  90. padding-left: 0.96rem;
  91. background-image: url('@/assets/smartOps/icon08.png');
  92. }
  93. }
  94. }
  95. .text {
  96. padding: 0.08rem 0.2rem;
  97. line-height: 0.24rem;
  98. font-size: 0.24rem;
  99. color: #4a90e2;
  100. // text-align: center;
  101. }
  102. }
  103. .btnDate {
  104. margin-right: 0.2rem;
  105. font-size: 0.24rem;
  106. height: 0.5rem;
  107. background-color: #2f4d83;
  108. }
  109. .btnSelect {
  110. .btnDate;
  111. background-color: #329bfe;
  112. }
  113. .anaBtn {
  114. font-size: 0.12rem !important;
  115. padding: 0.06rem;
  116. line-height: 0.12rem;
  117. height: auto !important;
  118. }
  119. @keyframes spin {
  120. from {
  121. transform: rotate(0deg);
  122. }
  123. to {
  124. transform: rotate(360deg);
  125. }
  126. }
  127. @keyframes scaleUp {
  128. 0% {
  129. transform: translate(0rem, 0rem);
  130. }
  131. 25% {
  132. transform: translate(0rem, -0.05rem);
  133. }
  134. 75% {
  135. transform: translate(0rem, 0.05rem);
  136. }
  137. 100% {
  138. transform: translate(0rem, 0rem);
  139. }
  140. }
  141. .marginBottom {
  142. margin-bottom: 0.2rem;
  143. }
  144. .marginLeft {
  145. margin-left: 0.2rem;
  146. }
  147. .marginRight {
  148. margin-right: 0.2rem;
  149. }
  150. .searchContent {
  151. display: flex;
  152. align-items: center;
  153. margin-bottom: 0.2rem;
  154. color: #4a4a4a;
  155. font-size: 0.24rem;
  156. white-space: nowrap;
  157. :global {
  158. .ant-select {
  159. margin: 0 0.4rem 0 0.1rem;
  160. // background-color: #284e83;
  161. }
  162. }
  163. }
  164. .timePicker {
  165. // background-color: #284e83;
  166. }
  167. .form {
  168. width: 100%;
  169. margin-bottom: 0.14rem;
  170. display: flex;
  171. align-items: center;
  172. justify-content: space-between;
  173. :global {
  174. .ant-picker {
  175. background: #2f4d83;
  176. .ant-picker-input > input {
  177. color: #ffffff;
  178. }
  179. .ant-picker-separator {
  180. color: #ffffff;
  181. }
  182. .ant-picker-suffix {
  183. color: #ffffff;
  184. }
  185. }
  186. }
  187. }
  188. body .formDropDown :global {
  189. .ant-picker-range-arrow::after {
  190. background: #2f4d83;
  191. }
  192. .ant-picker-panel-container {
  193. background: #2f4d83;
  194. }
  195. .ant-picker-header {
  196. color: #ffffff;
  197. }
  198. table {
  199. background-color: #2f4d83;
  200. }
  201. .ant-picker-content th {
  202. color: white;
  203. }
  204. .ant-picker-cell {
  205. color: white;
  206. }
  207. }
  208. .tableSelect {
  209. background: rgba(145, 192, 238, 0.16) !important;
  210. }
  211. .tabContent {
  212. :global {
  213. .ant-table-tbody > tr:nth-child(even) {
  214. background: inherit;
  215. }
  216. }
  217. }