index.less 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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.2rem;
  106. line-height: 0.2rem;
  107. padding: 0.1rem;
  108. height: auto !important;
  109. // background-color: #2f4d83;
  110. }
  111. .btnSelect {
  112. .btnDate;
  113. background-color: #329bfe;
  114. }
  115. .anaBtn {
  116. font-size: 0.12rem !important;
  117. padding: 0.06rem;
  118. line-height: 0.12rem;
  119. height: auto !important;
  120. }
  121. @keyframes spin {
  122. from {
  123. transform: rotate(0deg);
  124. }
  125. to {
  126. transform: rotate(360deg);
  127. }
  128. }
  129. @keyframes scaleUp {
  130. 0% {
  131. transform: translate(0rem, 0rem);
  132. }
  133. 25% {
  134. transform: translate(0rem, -0.05rem);
  135. }
  136. 75% {
  137. transform: translate(0rem, 0.05rem);
  138. }
  139. 100% {
  140. transform: translate(0rem, 0rem);
  141. }
  142. }
  143. .marginBottom {
  144. margin-bottom: 0.2rem;
  145. }
  146. .marginLeft {
  147. margin-left: 0.2rem;
  148. }
  149. .marginRight {
  150. margin-right: 0.2rem;
  151. }
  152. .searchContent {
  153. display: flex;
  154. align-items: center;
  155. margin-bottom: 0.2rem;
  156. color: #4a4a4a;
  157. font-size: 0.24rem;
  158. white-space: nowrap;
  159. width: 100%;
  160. :global {
  161. .ant-select {
  162. margin: 0 0.1rem 0 0.1rem;
  163. }
  164. .ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  165. height: 0.48rem;
  166. .ant-select-selection-search-input {
  167. height: 100%;
  168. }
  169. .ant-select-selection-placeholder,
  170. .ant-select-selection-item {
  171. line-height: 0.38rem;
  172. }
  173. }
  174. }
  175. }
  176. .timePicker {
  177. :global {
  178. padding: 0.02rem 0.11rem 0.02rem;
  179. .ant-picker-input {
  180. min-width: 1rem;
  181. }
  182. }
  183. }
  184. .form {
  185. width: 100%;
  186. margin-bottom: 0.14rem;
  187. display: flex;
  188. align-items: center;
  189. justify-content: space-between;
  190. :global {
  191. .ant-form-item {
  192. line-height: normal;
  193. .ant-form-item-control-input {
  194. min-height: auto;
  195. }
  196. }
  197. }
  198. }
  199. .tableSelect {
  200. background: rgba(145, 192, 238, 0.16) !important;
  201. }
  202. .tabContent {
  203. :global {
  204. .ant-table-tbody > tr:nth-child(even) {
  205. background: inherit;
  206. }
  207. .ant-table-wrapper .ant-table-thead > tr > th,
  208. .ant-table-wrapper .ant-table-tbody > tr > td {
  209. font-size: 0.24rem;
  210. }
  211. }
  212. }