document.ejs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <!DOCTYPE html>
  2. <html translate="no">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="keywords" content="CLD.SystemV2" />
  7. <meta
  8. name="description"
  9. content="
  10. An out-of-box UI solution for enterprise applications as a React boilerplate."
  11. />
  12. <meta
  13. name="description"
  14. content="
  15. CLD.SystemV2"
  16. />
  17. <!-- <meta
  18. name="viewport"
  19. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
  20. /> -->
  21. <title>CLD.SystemV2</title>
  22. <link rel="icon" href="<%= context.config.publicPath +'favicon.ico'%>" type="image/x-icon" />
  23. </head>
  24. <body>
  25. <!-- <script
  26. defer
  27. src="https://lf1-cdn-tos.bytegoofy.com/obj/iconpark/icons_1832_49.5a251ec91e1c2f50fa8fe47441080413.js"
  28. ></script> -->
  29. <noscript>Out-of-the-box mid-stage front/design solution!</noscript>
  30. <div id="root">
  31. <style>
  32. html,
  33. body,
  34. #root {
  35. height: 100%;
  36. margin: 0;
  37. padding: 0;
  38. }
  39. #root {
  40. /* background-image: url('https://d2.smartcost.com.cn/cach/cld/home_bg.png'); */
  41. background-repeat: no-repeat;
  42. background-size: 100% auto;
  43. }
  44. .page-loading-warp {
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. padding: 98px;
  49. }
  50. .ant-spin {
  51. position: absolute;
  52. display: none;
  53. -webkit-box-sizing: border-box;
  54. box-sizing: border-box;
  55. margin: 0;
  56. padding: 0;
  57. color: rgba(0, 0, 0, 0.65);
  58. color: #1890ff;
  59. font-size: 14px;
  60. font-variant: tabular-nums;
  61. line-height: 1.5;
  62. text-align: center;
  63. list-style: none;
  64. opacity: 0;
  65. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  66. transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  67. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  68. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
  69. -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  70. -webkit-font-feature-settings: 'tnum';
  71. font-feature-settings: 'tnum';
  72. }
  73. .ant-spin-spinning {
  74. position: static;
  75. display: inline-block;
  76. opacity: 1;
  77. }
  78. .ant-spin-dot {
  79. position: relative;
  80. display: inline-block;
  81. width: 20px;
  82. height: 20px;
  83. font-size: 20px;
  84. }
  85. .ant-spin-dot-item {
  86. position: absolute;
  87. display: block;
  88. width: 9px;
  89. height: 9px;
  90. background-color: #1890ff;
  91. border-radius: 100%;
  92. -webkit-transform: scale(0.75);
  93. -ms-transform: scale(0.75);
  94. transform: scale(0.75);
  95. -webkit-transform-origin: 50% 50%;
  96. -ms-transform-origin: 50% 50%;
  97. transform-origin: 50% 50%;
  98. opacity: 0.3;
  99. -webkit-animation: antspinmove 1s infinite linear alternate;
  100. animation: antSpinMove 1s infinite linear alternate;
  101. }
  102. .ant-spin-dot-item:nth-child(1) {
  103. top: 0;
  104. left: 0;
  105. }
  106. .ant-spin-dot-item:nth-child(2) {
  107. top: 0;
  108. right: 0;
  109. -webkit-animation-delay: 0.4s;
  110. animation-delay: 0.4s;
  111. }
  112. .ant-spin-dot-item:nth-child(3) {
  113. right: 0;
  114. bottom: 0;
  115. -webkit-animation-delay: 0.8s;
  116. animation-delay: 0.8s;
  117. }
  118. .ant-spin-dot-item:nth-child(4) {
  119. bottom: 0;
  120. left: 0;
  121. -webkit-animation-delay: 1.2s;
  122. animation-delay: 1.2s;
  123. }
  124. .ant-spin-dot-spin {
  125. -webkit-transform: rotate(45deg);
  126. -ms-transform: rotate(45deg);
  127. transform: rotate(45deg);
  128. -webkit-animation: antrotate 1.2s infinite linear;
  129. animation: antRotate 1.2s infinite linear;
  130. }
  131. .ant-spin-lg .ant-spin-dot {
  132. width: 32px;
  133. height: 32px;
  134. font-size: 32px;
  135. }
  136. .ant-spin-lg .ant-spin-dot i {
  137. width: 14px;
  138. height: 14px;
  139. }
  140. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  141. .ant-spin-blur {
  142. background: #fff;
  143. opacity: 0.5;
  144. }
  145. }
  146. @-webkit-keyframes antSpinMove {
  147. to {
  148. opacity: 1;
  149. }
  150. }
  151. @keyframes antSpinMove {
  152. to {
  153. opacity: 1;
  154. }
  155. }
  156. @-webkit-keyframes antRotate {
  157. to {
  158. -webkit-transform: rotate(405deg);
  159. transform: rotate(405deg);
  160. }
  161. }
  162. @keyframes antRotate {
  163. to {
  164. -webkit-transform: rotate(405deg);
  165. transform: rotate(405deg);
  166. }
  167. }
  168. </style>
  169. <div
  170. style="
  171. display: flex;
  172. flex-direction: column;
  173. align-items: center;
  174. justify-content: center;
  175. height: 100%;
  176. min-height: 420px;
  177. "
  178. >
  179. <img src="https://d2.smartcost.com.cn/cach/cld/zh_logo.svg" alt="logo" width="256" />
  180. <div class="page-loading-warp">
  181. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  182. <span class="ant-spin-dot ant-spin-dot-spin"
  183. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  184. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  185. ></span>
  186. </div>
  187. </div>
  188. <div style="display: flex; align-items: center; justify-content: center">
  189. <!-- <img
  190. src="/logo.svg"
  191. width="32"
  192. style="margin-right: 8px"
  193. /> -->
  194. <img
  195. src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
  196. width="32"
  197. style="margin-right: 8px"
  198. />
  199. Ant Design
  200. </div>
  201. </div>
  202. </div>
  203. </body>
  204. </html>