index.html 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  58. }
  59. .ant-spin-spinning {
  60. position: static;
  61. display: inline-block;
  62. opacity: 1;
  63. }
  64. .ant-spin-dot {
  65. position: relative;
  66. display: inline-block;
  67. font-size: 20px;
  68. width: 20px;
  69. height: 20px;
  70. }
  71. .ant-spin-dot-item {
  72. position: absolute;
  73. display: block;
  74. width: 19px;
  75. height: 19px;
  76. background-color: #1890ff;
  77. border-radius: 100%;
  78. -webkit-transform: scale(0.75);
  79. -ms-transform: scale(0.75);
  80. transform: scale(0.75);
  81. -webkit-transform-origin: 50% 50%;
  82. -ms-transform-origin: 50% 50%;
  83. transform-origin: 50% 50%;
  84. opacity: 0.3;
  85. -webkit-animation: antSpinMove 1s infinite linear alternate;
  86. animation: antSpinMove 1s infinite linear alternate;
  87. }
  88. .ant-spin-dot-item:nth-child(1) {
  89. top: 0;
  90. left: 0;
  91. }
  92. .ant-spin-dot-item:nth-child(2) {
  93. top: 0;
  94. right: 0;
  95. -webkit-animation-delay: 0.4s;
  96. animation-delay: 0.4s;
  97. }
  98. .ant-spin-dot-item:nth-child(3) {
  99. right: 0;
  100. bottom: 0;
  101. -webkit-animation-delay: 0.8s;
  102. animation-delay: 0.8s;
  103. }
  104. .ant-spin-dot-item:nth-child(4) {
  105. bottom: 0;
  106. left: 0;
  107. -webkit-animation-delay: 1.2s;
  108. animation-delay: 1.2s;
  109. }
  110. .ant-spin-dot-spin {
  111. -webkit-transform: rotate(45deg);
  112. -ms-transform: rotate(45deg);
  113. transform: rotate(45deg);
  114. -webkit-animation: antRotate 1.2s infinite linear;
  115. animation: antRotate 1.2s infinite linear;
  116. }
  117. .ant-spin-lg .ant-spin-dot {
  118. font-size: 32px;
  119. width: 32px;
  120. height: 32px;
  121. }
  122. .ant-spin-lg .ant-spin-dot i {
  123. width: 14px;
  124. height: 14px;
  125. }
  126. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  127. .ant-spin-blur {
  128. background: #fff;
  129. opacity: 0.5;
  130. }
  131. }
  132. @-webkit-keyframes antSpinMove {
  133. to {
  134. opacity: 1;
  135. }
  136. }
  137. @keyframes antSpinMove {
  138. to {
  139. opacity: 1;
  140. }
  141. }
  142. @-webkit-keyframes antRotate {
  143. to {
  144. -webkit-transform: rotate(405deg);
  145. transform: rotate(405deg);
  146. }
  147. }
  148. @keyframes antRotate {
  149. to {
  150. -webkit-transform: rotate(405deg);
  151. transform: rotate(405deg);
  152. }
  153. }
  154. .loader {
  155. /* animation-name:load; */
  156. animation: load 2s linear infinite;
  157. border: 16px solid #f3f3f3;
  158. border-radius: 50%;
  159. border-top: 16px solid #2e8e9a;
  160. height: 100px;
  161. width: 100px;
  162. margin: 0 auto;
  163. }
  164. @keyframes load {
  165. 0% {
  166. transform: rotate(0deg);
  167. }
  168. 100% {
  169. transform: rotate(360deg);
  170. }
  171. }
  172. </style>
  173. <div style="
  174. display: flex;
  175. justify-content: center;
  176. align-items: center;
  177. flex-direction: column;
  178. min-height: 420px;
  179. height: 100%;
  180. ">
  181. <img src="images/xiaomeilogo2-v2F-64.png" alt="logo" width="256" />
  182. <div class="page-loading-warp">
  183. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  184. <!--<div class="loader"></div>-->
  185. <span class="ant-spin-dot ant-spin-dot-spin">
  186. <i class="ant-spin-dot-item"></i>
  187. <i class="ant-spin-dot-item"></i>
  188. <i class="ant-spin-dot-item"></i>
  189. <i class="ant-spin-dot-item"></i>
  190. </span>
  191. </div>
  192. </div>
  193. <!--<div style="display: flex; justify-content: center; align-items: center;">
  194. <img src="images/小美logo.png" width="32"
  195. style="margin-right: 8px;" />
  196. 小美知识产权
  197. </div>-->
  198. </div>
  199. </div>
  200. <script src="_content/AntDesign.Charts/g2plot.js"></script>
  201. <script src="_content/AntDesign/js/ant-design-blazor.js"></script>
  202. <script src="_content/AntDesign.Charts/ant-design-charts-blazor.js"></script>
  203. <script src="_framework/blazor.webassembly.js"></script>
  204. <script src="saveSvgAsPng.js"></script>
  205. </body>
  206. </html>