document.ejs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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
  7. name="keywords"
  8. content=""
  9. />
  10. <meta
  11. name="description"
  12. content="康程智医技术出品"
  13. />
  14. <meta
  15. name="viewport"
  16. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
  17. />
  18. <title>医院智慧查检系统</title>
  19. <link rel="icon" href="<%= context.config.publicPath +'favicon.ico'%>" type="image/x-icon" />
  20. </head>
  21. <body >
  22. <noscript>
  23. <div class="noscript-container">
  24. Hi there! Please
  25. <div class="noscript-enableJS">
  26. <a href="https://www.enablejavascript.io/en" target="_blank" rel="noopener noreferrer">
  27. <b>enable Javascript</b>
  28. </a>
  29. </div>
  30. </div>
  31. </noscript>
  32. <div id="root">
  33. <style>
  34. html,
  35. body,
  36. #root {
  37. height: 100%;
  38. margin: 0;
  39. padding: 0;
  40. }
  41. #root {
  42. background-repeat: no-repeat;
  43. background-size: 100% auto;
  44. }
  45. .noscript-container {
  46. display: flex;
  47. align-content: center;
  48. justify-content: center;
  49. margin-top: 90px;
  50. font-size: 20px;
  51. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode',
  52. Geneva, Verdana, sans-serif;
  53. }
  54. .noscript-enableJS {
  55. padding-right: 3px;
  56. padding-left: 3px;
  57. }
  58. .page-loading-warp {
  59. display: flex;
  60. align-items: center;
  61. justify-content: center;
  62. padding: 98px;
  63. }
  64. .ant-spin {
  65. position: absolute;
  66. display: none;
  67. -webkit-box-sizing: border-box;
  68. box-sizing: border-box;
  69. margin: 0;
  70. padding: 0;
  71. color: rgba(0, 0, 0, 0.65);
  72. color: #1890ff;
  73. font-size: 14px;
  74. font-variant: tabular-nums;
  75. line-height: 1.5;
  76. text-align: center;
  77. list-style: none;
  78. opacity: 0;
  79. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  80. transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  81. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  82. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
  83. -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  84. -webkit-font-feature-settings: 'tnum';
  85. font-feature-settings: 'tnum';
  86. }
  87. .ant-spin-spinning {
  88. position: static;
  89. display: inline-block;
  90. opacity: 1;
  91. }
  92. .ant-spin-dot {
  93. position: relative;
  94. display: inline-block;
  95. width: 20px;
  96. height: 20px;
  97. font-size: 20px;
  98. }
  99. .ant-spin-dot-item {
  100. position: absolute;
  101. display: block;
  102. width: 9px;
  103. height: 9px;
  104. background-color: #1890ff;
  105. border-radius: 100%;
  106. -webkit-transform: scale(0.75);
  107. -ms-transform: scale(0.75);
  108. transform: scale(0.75);
  109. -webkit-transform-origin: 50% 50%;
  110. -ms-transform-origin: 50% 50%;
  111. transform-origin: 50% 50%;
  112. opacity: 0.3;
  113. -webkit-animation: antspinmove 1s infinite linear alternate;
  114. animation: antSpinMove 1s infinite linear alternate;
  115. }
  116. .ant-spin-dot-item:nth-child(1) {
  117. top: 0;
  118. left: 0;
  119. }
  120. .ant-spin-dot-item:nth-child(2) {
  121. top: 0;
  122. right: 0;
  123. -webkit-animation-delay: 0.4s;
  124. animation-delay: 0.4s;
  125. }
  126. .ant-spin-dot-item:nth-child(3) {
  127. right: 0;
  128. bottom: 0;
  129. -webkit-animation-delay: 0.8s;
  130. animation-delay: 0.8s;
  131. }
  132. .ant-spin-dot-item:nth-child(4) {
  133. bottom: 0;
  134. left: 0;
  135. -webkit-animation-delay: 1.2s;
  136. animation-delay: 1.2s;
  137. }
  138. .ant-spin-dot-spin {
  139. -webkit-transform: rotate(45deg);
  140. -ms-transform: rotate(45deg);
  141. transform: rotate(45deg);
  142. -webkit-animation: antrotate 1.2s infinite linear;
  143. animation: antRotate 1.2s infinite linear;
  144. }
  145. .ant-spin-lg .ant-spin-dot {
  146. width: 32px;
  147. height: 32px;
  148. font-size: 32px;
  149. }
  150. .ant-spin-lg .ant-spin-dot i {
  151. width: 14px;
  152. height: 14px;
  153. }
  154. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  155. .ant-spin-blur {
  156. background: #fff;
  157. opacity: 0.5;
  158. }
  159. }
  160. @-webkit-keyframes antSpinMove {
  161. to {
  162. opacity: 1;
  163. }
  164. }
  165. @keyframes antSpinMove {
  166. to {
  167. opacity: 1;
  168. }
  169. }
  170. @-webkit-keyframes antRotate {
  171. to {
  172. -webkit-transform: rotate(405deg);
  173. transform: rotate(405deg);
  174. }
  175. }
  176. @keyframes antRotate {
  177. to {
  178. -webkit-transform: rotate(405deg);
  179. transform: rotate(405deg);
  180. }
  181. }
  182. </style>
  183. <div
  184. style="
  185. display: flex;
  186. flex-direction: column;
  187. align-items: center;
  188. justify-content: center;
  189. height: 100%;
  190. min-height: 420px;
  191. "
  192. >
  193. <!-- <img src="<%= context.config.publicPath +'pro_icon.svg'%>" alt="logo" width="256" /> -->
  194. <div class="page-loading-warp">
  195. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  196. <span class="ant-spin-dot ant-spin-dot-spin"
  197. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  198. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  199. ></span>
  200. </div>
  201. </div>
  202. <div style="display: flex; align-items: center; justify-content: center">
  203. <!-- <img
  204. src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
  205. width="32"
  206. style="margin-right: 8px"
  207. /> -->
  208. <h2>医院智慧查检系统</h2>
  209. </div>
  210. </div>
  211. </div>
  212. </body>
  213. </html>