index.html 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
  7. <title>小美集团绩效系统</title>
  8. <link rel="icon" href="favicon.ico" type="image/x-icon" />
  9. <base href="/" />
  10. <link href="_content/AntDesign/css/ant-design-blazor.css" rel="stylesheet" />
  11. <link href="_content/AntDesign.ProLayout/css/ant-design-pro-layout-blazor.css" rel="stylesheet" />
  12. <link href="./css/site.css" rel="stylesheet" />
  13. <link href="wispro.sp.web.styles.css" rel="stylesheet" />
  14. </head>
  15. <body>
  16. <noscript>Out-of-the-box mid-stage front/design solution!</noscript>
  17. <div id="app">
  18. <style>
  19. html,
  20. body,
  21. #app {
  22. height: 100%;
  23. margin: 0;
  24. padding: 0;
  25. }
  26. #app {
  27. background-repeat: no-repeat;
  28. background-size: 100% auto;
  29. }
  30. .page-loading-warp {
  31. padding: 98px;
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. }
  36. .ant-spin {
  37. -webkit-box-sizing: border-box;
  38. box-sizing: border-box;
  39. margin: 0;
  40. padding: 0;
  41. color: rgba(0, 0, 0, 0.65);
  42. font-size: 14px;
  43. font-variant: tabular-nums;
  44. line-height: 1.5;
  45. list-style: none;
  46. -webkit-font-feature-settings: 'tnum';
  47. font-feature-settings: 'tnum';
  48. position: absolute;
  49. display: none;
  50. color: #1890ff;
  51. text-align: center;
  52. vertical-align: middle;
  53. opacity: 0;
  54. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  55. transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  56. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  57. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
  58. -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  59. }
  60. .ant-spin-spinning {
  61. position: static;
  62. display: inline-block;
  63. opacity: 1;
  64. }
  65. .ant-spin-dot {
  66. position: relative;
  67. display: inline-block;
  68. font-size: 20px;
  69. width: 20px;
  70. height: 20px;
  71. }
  72. .ant-spin-dot-item {
  73. position: absolute;
  74. display: block;
  75. width: 19px;
  76. height: 19px;
  77. background-color: #1890ff;
  78. border-radius: 100%;
  79. -webkit-transform: scale(0.75);
  80. -ms-transform: scale(0.75);
  81. transform: scale(0.75);
  82. -webkit-transform-origin: 50% 50%;
  83. -ms-transform-origin: 50% 50%;
  84. transform-origin: 50% 50%;
  85. opacity: 0.3;
  86. -webkit-animation: antSpinMove 1s infinite linear alternate;
  87. animation: antSpinMove 1s infinite linear alternate;
  88. }
  89. .ant-spin-dot-item:nth-child(1) {
  90. top: 0;
  91. left: 0;
  92. }
  93. .ant-spin-dot-item:nth-child(2) {
  94. top: 0;
  95. right: 0;
  96. -webkit-animation-delay: 0.4s;
  97. animation-delay: 0.4s;
  98. }
  99. .ant-spin-dot-item:nth-child(3) {
  100. right: 0;
  101. bottom: 0;
  102. -webkit-animation-delay: 0.8s;
  103. animation-delay: 0.8s;
  104. }
  105. .ant-spin-dot-item:nth-child(4) {
  106. bottom: 0;
  107. left: 0;
  108. -webkit-animation-delay: 1.2s;
  109. animation-delay: 1.2s;
  110. }
  111. .ant-spin-dot-spin {
  112. -webkit-transform: rotate(45deg);
  113. -ms-transform: rotate(45deg);
  114. transform: rotate(45deg);
  115. -webkit-animation: antRotate 1.2s infinite linear;
  116. animation: antRotate 1.2s infinite linear;
  117. }
  118. .ant-spin-lg .ant-spin-dot {
  119. font-size: 32px;
  120. width: 32px;
  121. height: 32px;
  122. }
  123. .ant-spin-lg .ant-spin-dot i {
  124. width: 14px;
  125. height: 14px;
  126. }
  127. @media all and (-ms-high-contrast: none),
  128. (-ms-high-contrast: active) {
  129. .ant-spin-blur {
  130. background: #fff;
  131. opacity: 0.5;
  132. }
  133. }
  134. @-webkit-keyframes antSpinMove {
  135. to {
  136. opacity: 1;
  137. }
  138. }
  139. @keyframes antSpinMove {
  140. to {
  141. opacity: 1;
  142. }
  143. }
  144. @-webkit-keyframes antRotate {
  145. to {
  146. -webkit-transform: rotate(405deg);
  147. transform: rotate(405deg);
  148. }
  149. }
  150. @keyframes antRotate {
  151. to {
  152. -webkit-transform: rotate(405deg);
  153. transform: rotate(405deg);
  154. }
  155. }
  156. .loader {
  157. /* animation-name:load; */
  158. animation: load 2s linear infinite;
  159. border: 16px solid #f3f3f3;
  160. border-radius: 50%;
  161. border-top: 16px solid #2e8e9a;
  162. height: 100px;
  163. width: 100px;
  164. margin: 0 auto;
  165. }
  166. @keyframes load {
  167. 0% {
  168. transform: rotate(0deg);
  169. }
  170. 100% {
  171. transform: rotate(360deg);
  172. }
  173. }
  174. </style>
  175. <div style="
  176. display: flex;
  177. justify-content: center;
  178. align-items: center;
  179. flex-direction: column;
  180. min-height: 420px;
  181. height: 100%;
  182. ">
  183. <img src="images/xiaomeilogo2-v2F-64.png" alt="logo" width="256" />
  184. <div class="page-loading-warp">
  185. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  186. <!--<div class="loader"></div>-->
  187. <span class="ant-spin-dot ant-spin-dot-spin">
  188. <i class="ant-spin-dot-item"></i>
  189. <i class="ant-spin-dot-item"></i>
  190. <i class="ant-spin-dot-item"></i>
  191. <i class="ant-spin-dot-item"></i>
  192. </span>
  193. </div>
  194. </div>
  195. <!--<div style="display: flex; justify-content: center; align-items: center;">
  196. <img src="images/小美logo.png" width="32"
  197. style="margin-right: 8px;" />
  198. 小米知识产权
  199. </div>-->
  200. </div>
  201. </div>
  202. <script src="_content/AntDesign.Charts/g2plot.js"></script>
  203. <script src="_content/AntDesign/js/ant-design-blazor.js"></script>
  204. <script src="_content/AntDesign.Charts/ant-design-charts-blazor.js"></script>
  205. <script src="_framework/blazor.webassembly.js"></script>
  206. </body>
  207. </html>