index.html 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <script src="https://g.alicdn.com/code/npm/@ali/dingtalk-h5-remote-debug/0.1.3/index.js"></script>
  5. <script src="https://g.alicdn.com/dingding/dinglogin/0.0.5/ddLogin.js"></script>
  6. <meta charset="UTF-8" />
  7. <link rel="icon" href="/favicon.ico" />
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  10. <meta name="keywords" content="DeepOil管理系统" />
  11. <meta name="description" content="DeepOil管理系统" />
  12. <title>%VITE_APP_TITLE%</title>
  13. </head>
  14. <body>
  15. <div id="app">
  16. <style>
  17. .app-loading {
  18. display: flex;
  19. width: 100%;
  20. height: 100%;
  21. justify-content: center;
  22. align-items: center;
  23. flex-direction: column;
  24. background: #f0f2f5;
  25. }
  26. .app-loading .app-loading-wrap {
  27. position: absolute;
  28. top: 50%;
  29. left: 50%;
  30. display: flex;
  31. -webkit-transform: translate3d(-50%, -50%, 0);
  32. transform: translate3d(-50%, -50%, 0);
  33. justify-content: center;
  34. align-items: center;
  35. flex-direction: column;
  36. }
  37. .app-loading .app-loading-title {
  38. margin-bottom: 30px;
  39. font-size: 20px;
  40. font-weight: bold;
  41. text-align: center;
  42. }
  43. .app-loading .app-loading-logo {
  44. width: 100px;
  45. margin: 0 auto 15px auto;
  46. }
  47. .app-loading .app-loading-item {
  48. position: relative;
  49. display: inline-block;
  50. width: 60px;
  51. height: 60px;
  52. vertical-align: middle;
  53. border-radius: 50%;
  54. }
  55. .app-loading .app-loading-outter {
  56. position: absolute;
  57. width: 100%;
  58. height: 100%;
  59. border: 4px solid #2d8cf0;
  60. border-bottom: 0;
  61. border-left-color: transparent;
  62. border-radius: 50%;
  63. animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  64. }
  65. .app-loading .app-loading-inner {
  66. position: absolute;
  67. top: calc(50% - 20px);
  68. left: calc(50% - 20px);
  69. width: 40px;
  70. height: 40px;
  71. border: 4px solid #87bdff;
  72. border-right: 0;
  73. border-top-color: transparent;
  74. border-radius: 50%;
  75. animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  76. }
  77. @-webkit-keyframes loader-outter {
  78. 0% {
  79. -webkit-transform: rotate(0deg);
  80. transform: rotate(0deg);
  81. }
  82. 100% {
  83. -webkit-transform: rotate(360deg);
  84. transform: rotate(360deg);
  85. }
  86. }
  87. @keyframes loader-outter {
  88. 0% {
  89. -webkit-transform: rotate(0deg);
  90. transform: rotate(0deg);
  91. }
  92. 100% {
  93. -webkit-transform: rotate(360deg);
  94. transform: rotate(360deg);
  95. }
  96. }
  97. @-webkit-keyframes loader-inner {
  98. 0% {
  99. -webkit-transform: rotate(0deg);
  100. transform: rotate(0deg);
  101. }
  102. 100% {
  103. -webkit-transform: rotate(-360deg);
  104. transform: rotate(-360deg);
  105. }
  106. }
  107. @keyframes loader-inner {
  108. 0% {
  109. -webkit-transform: rotate(0deg);
  110. transform: rotate(0deg);
  111. }
  112. 100% {
  113. -webkit-transform: rotate(-360deg);
  114. transform: rotate(-360deg);
  115. }
  116. }
  117. /* From Uiverse.io by Juanes200122 */
  118. #svg-global {
  119. zoom: 1.2;
  120. overflow: visible;
  121. }
  122. @keyframes fade-particles {
  123. 0%,
  124. 100% {
  125. opacity: 1;
  126. }
  127. 50% {
  128. opacity: 0.5;
  129. }
  130. }
  131. @keyframes floatUp {
  132. 0% {
  133. transform: translateY(0);
  134. opacity: 0;
  135. }
  136. 10% {
  137. opacity: 1;
  138. }
  139. 100% {
  140. transform: translateY(-40px);
  141. opacity: 0;
  142. }
  143. }
  144. #particles {
  145. animation: fade-particles 5s infinite alternate;
  146. }
  147. .particle {
  148. animation: floatUp linear infinite;
  149. }
  150. .p1 {
  151. animation-duration: 2.2s;
  152. animation-delay: 0s;
  153. }
  154. .p2 {
  155. animation-duration: 2.5s;
  156. animation-delay: 0.3s;
  157. }
  158. .p3 {
  159. animation-duration: 2s;
  160. animation-delay: 0.6s;
  161. }
  162. .p4 {
  163. animation-duration: 2.8s;
  164. animation-delay: 0.2s;
  165. }
  166. .p5 {
  167. animation-duration: 2.3s;
  168. animation-delay: 0.4s;
  169. }
  170. .p6 {
  171. animation-duration: 3s;
  172. animation-delay: 0.1s;
  173. }
  174. .p7 {
  175. animation-duration: 2.1s;
  176. animation-delay: 0.5s;
  177. }
  178. .p8 {
  179. animation-duration: 2.6s;
  180. animation-delay: 0.2s;
  181. }
  182. .p9 {
  183. animation-duration: 2.4s;
  184. animation-delay: 0.3s;
  185. }
  186. @keyframes bounce-lines {
  187. 0%,
  188. 100% {
  189. transform: translateY(0);
  190. }
  191. 50% {
  192. transform: translateY(-3px);
  193. }
  194. }
  195. #line-v1,
  196. #line-v2,
  197. #node-server,
  198. #panel-rigth,
  199. #reflectores,
  200. #particles {
  201. animation: bounce-lines 3s ease-in-out infinite alternate;
  202. }
  203. #line-v2 {
  204. animation-delay: 0.2s;
  205. }
  206. #node-server,
  207. #panel-rigth,
  208. #reflectores,
  209. #particles {
  210. animation-delay: 0.4s;
  211. }
  212. </style>
  213. <div class="app-loading">
  214. <div class="app-loading-wrap">
  215. <div class="app-loading-title">
  216. <!-- From Uiverse.io by Juanes200122 -->
  217. <svg
  218. id="svg-global"
  219. xmlns="http://www.w3.org/2000/svg"
  220. fill="none"
  221. viewBox="0 0 94 136"
  222. height="136"
  223. width="94"
  224. >
  225. <path
  226. stroke="#4B22B5"
  227. d="M87.3629 108.433L49.1073 85.3765C47.846 84.6163 45.8009 84.6163 44.5395 85.3765L6.28392 108.433C5.02255 109.194 5.02255 110.426 6.28392 111.187L44.5395 134.243C45.8009 135.004 47.846 135.004 49.1073 134.243L87.3629 111.187C88.6243 110.426 88.6243 109.194 87.3629 108.433Z"
  228. id="line-v1"
  229. ></path>
  230. <path
  231. stroke="#5728CC"
  232. d="M91.0928 95.699L49.2899 70.5042C47.9116 69.6734 45.6769 69.6734 44.2986 70.5042L2.49568 95.699C1.11735 96.5298 1.11735 97.8767 2.49568 98.7074L44.2986 123.902C45.6769 124.733 47.9116 124.733 49.2899 123.902L91.0928 98.7074C92.4712 97.8767 92.4712 96.5298 91.0928 95.699Z"
  233. id="line-v2"
  234. ></path>
  235. <g id="node-server">
  236. <path
  237. fill="url(#paint0_linear_204_217)"
  238. d="M2.48637 72.0059L43.8699 96.9428C45.742 98.0709 48.281 97.8084 50.9284 96.2133L91.4607 71.7833C92.1444 71.2621 92.4197 70.9139 92.5421 70.1257V86.1368C92.5421 86.9686 92.0025 87.9681 91.3123 88.3825C84.502 92.4724 51.6503 112.204 50.0363 113.215C48.2352 114.343 45.3534 114.343 43.5523 113.215C41.9261 112.197 8.55699 91.8662 2.08967 87.926C1.39197 87.5011 1.00946 86.5986 1.00946 85.4058V70.1257C1.11219 70.9289 1.49685 71.3298 2.48637 72.0059Z"
  239. ></path>
  240. <path
  241. stroke="url(#paint2_linear_204_217)"
  242. fill="url(#paint1_linear_204_217)"
  243. d="M91.0928 68.7324L49.2899 43.5375C47.9116 42.7068 45.6769 42.7068 44.2986 43.5375L2.49568 68.7324C1.11735 69.5631 1.11735 70.91 2.49568 71.7407L44.2986 96.9356C45.6769 97.7663 47.9116 97.7663 49.2899 96.9356L91.0928 71.7407C92.4712 70.91 92.4712 69.5631 91.0928 68.7324Z"
  244. ></path>
  245. <mask
  246. height="41"
  247. width="67"
  248. y="50"
  249. x="13"
  250. maskUnits="userSpaceOnUse"
  251. style="mask-type: luminance"
  252. id="mask0_204_217"
  253. >
  254. <path
  255. fill="white"
  256. d="M78.3486 68.7324L49.0242 51.0584C47.6459 50.2276 45.4111 50.2276 44.0328 51.0584L14.7084 68.7324C13.3301 69.5631 13.3301 70.91 14.7084 71.7407L44.0328 89.4148C45.4111 90.2455 47.6459 90.2455 49.0242 89.4148L78.3486 71.7407C79.7269 70.91 79.727 69.5631 78.3486 68.7324Z"
  257. ></path>
  258. </mask>
  259. <g mask="url(#mask0_204_217)">
  260. <path
  261. fill="#332C94"
  262. d="M78.3486 68.7324L49.0242 51.0584C47.6459 50.2276 45.4111 50.2276 44.0328 51.0584L14.7084 68.7324C13.3301 69.5631 13.3301 70.91 14.7084 71.7407L44.0328 89.4148C45.4111 90.2455 47.6459 90.2455 49.0242 89.4148L78.3486 71.7407C79.7269 70.91 79.727 69.5631 78.3486 68.7324Z"
  263. ></path>
  264. <mask
  265. height="29"
  266. width="48"
  267. y="56"
  268. x="23"
  269. maskUnits="userSpaceOnUse"
  270. style="mask-type: luminance"
  271. id="mask1_204_217"
  272. >
  273. <path
  274. fill="white"
  275. d="M68.9898 68.7324L49.0242 56.699C47.6459 55.8683 45.4111 55.8683 44.0328 56.699L24.0673 68.7324C22.6889 69.5631 22.6889 70.91 24.0673 71.7407L44.0328 83.7741C45.4111 84.6048 47.6459 84.6048 49.0242 83.7741L68.9898 71.7407C70.3681 70.91 70.3681 69.5631 68.9898 68.7324Z"
  276. ></path>
  277. </mask>
  278. <g mask="url(#mask1_204_217)">
  279. <path
  280. fill="#5E5E5E"
  281. d="M68.9898 68.7324L49.0242 56.699C47.6459 55.8683 45.4111 55.8683 44.0328 56.699L24.0673 68.7324C22.6889 69.5631 22.6889 70.91 24.0673 71.7407L44.0328 83.7741C45.4111 84.6048 47.6459 84.6048 49.0242 83.7741L68.9898 71.7407C70.3681 70.91 70.3681 69.5631 68.9898 68.7324Z"
  282. ></path>
  283. <path
  284. fill="#71B1C6"
  285. d="M70.1311 69.3884L48.42 56.303C47.3863 55.6799 45.7103 55.6799 44.6765 56.303L22.5275 69.6523C21.4938 70.2754 21.4938 71.2855 22.5275 71.9086L44.2386 84.994C45.2723 85.617 46.9484 85.617 47.9821 84.994L70.1311 71.6446C71.1648 71.0216 71.1648 70.0114 70.1311 69.3884Z"
  286. ></path>
  287. <path
  288. fill="#80C0D4"
  289. d="M70.131 70.8923L48.4199 57.8069C47.3862 57.1839 45.7101 57.1839 44.6764 57.8069L22.5274 71.1562C21.4937 71.7793 21.4937 72.7894 22.5274 73.4125L44.2385 86.4979C45.2722 87.1209 46.9482 87.1209 47.982 86.4979L70.131 73.1486C71.1647 72.5255 71.1647 71.5153 70.131 70.8923Z"
  290. ></path>
  291. <path
  292. fill="#89D3EB"
  293. d="M69.751 72.1675L48.4199 59.3111C47.3862 58.6881 45.7101 58.6881 44.6764 59.3111L23.2004 72.2548C22.1667 72.8779 22.1667 73.888 23.2004 74.5111L44.5315 87.3674C45.5653 87.9905 47.2413 87.9905 48.2751 87.3674L69.751 74.4238C70.7847 73.8007 70.7847 72.7905 69.751 72.1675Z"
  294. ></path>
  295. <path
  296. fill="#97E6FF"
  297. d="M68.5091 72.9231L48.4199 60.8153C47.3862 60.1922 45.7101 60.1922 44.6764 60.8153L24.8146 72.7861C23.7808 73.4091 23.7808 74.4193 24.8146 75.0424L44.9038 87.1502C45.9375 87.7733 47.6135 87.7733 48.6473 87.1502L68.5091 75.1794C69.5428 74.5563 69.5428 73.5462 68.5091 72.9231Z"
  298. ></path>
  299. <path
  300. fill="#97E6FF"
  301. d="M66.6747 73.3219L48.4199 62.3197C47.3862 61.6966 45.7101 61.6966 44.6764 62.3197L26.4412 73.3101C25.4075 73.9332 25.4075 74.9433 26.4412 75.5664L44.696 86.5686C45.7297 87.1917 47.4058 87.1917 48.4395 86.5686L66.6747 75.5782C67.7084 74.9551 67.7084 73.945 66.6747 73.3219Z"
  302. ></path>
  303. </g>
  304. <path
  305. stroke-width="0.5"
  306. stroke="#F4F4F4"
  307. d="M68.9898 68.7324L49.0242 56.699C47.6459 55.8683 45.4111 55.8683 44.0328 56.699L24.0673 68.7324C22.6889 69.5631 22.6889 70.91 24.0673 71.7407L44.0328 83.7741C45.4111 84.6048 47.6459 84.6048 49.0242 83.7741L68.9898 71.7407C70.3681 70.91 70.3681 69.5631 68.9898 68.7324Z"
  308. ></path>
  309. </g>
  310. </g>
  311. <g id="particles">
  312. <path
  313. fill="url(#paint3_linear_204_217)"
  314. d="M43.5482 32.558C44.5429 32.558 45.3493 31.7162 45.3493 30.6778C45.3493 29.6394 44.5429 28.7976 43.5482 28.7976C42.5535 28.7976 41.7471 29.6394 41.7471 30.6778C41.7471 31.7162 42.5535 32.558 43.5482 32.558Z"
  315. class="particle p1"
  316. ></path>
  317. <path
  318. fill="url(#paint4_linear_204_217)"
  319. d="M50.0323 48.3519C51.027 48.3519 51.8334 47.5101 51.8334 46.4717C51.8334 45.4333 51.027 44.5915 50.0323 44.5915C49.0375 44.5915 48.2311 45.4333 48.2311 46.4717C48.2311 47.5101 49.0375 48.3519 50.0323 48.3519Z"
  320. class="particle p2"
  321. ></path>
  322. <path
  323. fill="url(#paint5_linear_204_217)"
  324. d="M40.3062 62.6416C41.102 62.6416 41.7471 61.9681 41.7471 61.1374C41.7471 60.3067 41.102 59.6332 40.3062 59.6332C39.5104 59.6332 38.8653 60.3067 38.8653 61.1374C38.8653 61.9681 39.5104 62.6416 40.3062 62.6416Z"
  325. class="particle p3"
  326. ></path>
  327. <path
  328. fill="url(#paint6_linear_204_217)"
  329. d="M50.7527 73.9229C52.1453 73.9229 53.2743 72.7444 53.2743 71.2906C53.2743 69.8368 52.1453 68.6583 50.7527 68.6583C49.3601 68.6583 48.2311 69.8368 48.2311 71.2906C48.2311 72.7444 49.3601 73.9229 50.7527 73.9229Z"
  330. class="particle p4"
  331. ></path>
  332. <path
  333. fill="url(#paint7_linear_204_217)"
  334. d="M48.5913 76.9312C49.1882 76.9312 49.672 76.4262 49.672 75.8031C49.672 75.1801 49.1882 74.675 48.5913 74.675C47.9945 74.675 47.5107 75.1801 47.5107 75.8031C47.5107 76.4262 47.9945 76.9312 48.5913 76.9312Z"
  335. class="particle p5"
  336. ></path>
  337. <path
  338. fill="url(#paint8_linear_204_217)"
  339. d="M52.9153 67.1541C53.115 67.1541 53.2768 66.9858 53.2768 66.7781C53.2768 66.5704 53.115 66.402 52.9153 66.402C52.7156 66.402 52.5538 66.5704 52.5538 66.7781C52.5538 66.9858 52.7156 67.1541 52.9153 67.1541Z"
  340. class="particle p6"
  341. ></path>
  342. <path
  343. fill="url(#paint9_linear_204_217)"
  344. d="M52.1936 43.8394C52.7904 43.8394 53.2743 43.3344 53.2743 42.7113C53.2743 42.0883 52.7904 41.5832 52.1936 41.5832C51.5967 41.5832 51.1129 42.0883 51.1129 42.7113C51.1129 43.3344 51.5967 43.8394 52.1936 43.8394Z"
  345. class="particle p7"
  346. ></path>
  347. <path
  348. fill="url(#paint10_linear_204_217)"
  349. d="M57.2367 29.5497C57.8335 29.5497 58.3173 29.0446 58.3173 28.4216C58.3173 27.7985 57.8335 27.2935 57.2367 27.2935C56.6398 27.2935 56.156 27.7985 56.156 28.4216C56.156 29.0446 56.6398 29.5497 57.2367 29.5497Z"
  350. class="particle p8"
  351. ></path>
  352. <path
  353. fill="url(#paint11_linear_204_217)"
  354. d="M43.9084 34.8144C44.3063 34.8144 44.6289 34.4777 44.6289 34.0623C44.6289 33.647 44.3063 33.3102 43.9084 33.3102C43.5105 33.3102 43.188 33.647 43.188 34.0623C43.188 34.4777 43.5105 34.8144 43.9084 34.8144Z"
  355. class="particle p9"
  356. ></path>
  357. </g>
  358. <g id="reflectores">
  359. <path
  360. fill-opacity="0.2"
  361. fill="url(#paint12_linear_204_217)"
  362. d="M49.2037 57.0009L68.7638 68.7786C69.6763 69.3089 69.7967 69.9684 69.794 70.1625V13.7383C69.7649 13.5587 69.6807 13.4657 69.4338 13.3096L48.4832 0.601307C46.9202 -0.192595 46.0788 -0.208238 44.6446 0.601307L23.6855 13.2118C23.1956 13.5876 23.1966 13.7637 23.1956 14.4904L23.246 70.1625C23.2948 69.4916 23.7327 69.0697 25.1768 68.2447L43.9084 57.0008C44.8268 56.4344 45.3776 56.2639 46.43 56.2487C47.5299 56.2257 48.1356 56.4222 49.2037 57.0009Z"
  363. ></path>
  364. <path
  365. fill-opacity="0.2"
  366. fill="url(#paint13_linear_204_217)"
  367. d="M48.8867 27.6696C49.9674 26.9175 68.6774 14.9197 68.6774 14.9197C69.3063 14.5327 69.7089 14.375 69.7796 13.756V70.1979C69.7775 70.8816 69.505 71.208 68.7422 71.7322L48.9299 83.6603C48.2003 84.1258 47.6732 84.2687 46.5103 84.2995C45.3295 84.2679 44.8074 84.1213 44.0907 83.6603L24.4348 71.8149C23.5828 71.3313 23.2369 71.0094 23.2316 70.1979L23.1884 13.9816C23.1798 14.8398 23.4982 15.3037 24.7518 16.0874C24.7518 16.0874 42.7629 26.9175 44.2038 27.6696C45.6447 28.4217 46.0049 28.4217 46.5452 28.4217C47.0856 28.4217 47.806 28.4217 48.8867 27.6696Z"
  368. ></path>
  369. </g>
  370. <g id="panel-rigth">
  371. <mask fill="white" id="path-26-inside-1_204_217">
  372. <path
  373. d="M72 91.8323C72 90.5121 72.9268 88.9068 74.0702 88.2467L87.9298 80.2448C89.0731 79.5847 90 80.1198 90 81.44V81.44C90 82.7602 89.0732 84.3656 87.9298 85.0257L74.0702 93.0275C72.9268 93.6876 72 93.1525 72 91.8323V91.8323Z"
  374. ></path>
  375. </mask>
  376. <path
  377. fill="#91DDFB"
  378. d="M72 91.8323C72 90.5121 72.9268 88.9068 74.0702 88.2467L87.9298 80.2448C89.0731 79.5847 90 80.1198 90 81.44V81.44C90 82.7602 89.0732 84.3656 87.9298 85.0257L74.0702 93.0275C72.9268 93.6876 72 93.1525 72 91.8323V91.8323Z"
  379. ></path>
  380. <path
  381. mask="url(#path-26-inside-1_204_217)"
  382. fill="#489CB7"
  383. d="M72 89.4419L90 79.0496L72 89.4419ZM90.6928 81.44C90.6928 82.9811 89.6109 84.8551 88.2762 85.6257L74.763 93.4275C73.237 94.3085 72 93.5943 72 91.8323V91.8323C72 92.7107 72.9268 92.8876 74.0702 92.2275L87.9298 84.2257C88.6905 83.7865 89.3072 82.7184 89.3072 81.84L90.6928 81.44ZM72 94.2227V89.4419V94.2227ZM88.2762 80.0448C89.6109 79.2742 90.6928 79.8989 90.6928 81.44V81.44C90.6928 82.9811 89.6109 84.8551 88.2762 85.6257L87.9298 84.2257C88.6905 83.7865 89.3072 82.7184 89.3072 81.84V81.84C89.3072 80.5198 88.6905 79.8056 87.9298 80.2448L88.2762 80.0448Z"
  384. ></path>
  385. <mask fill="white" id="path-28-inside-2_204_217">
  386. <path
  387. d="M67 94.6603C67 93.3848 67.8954 91.8339 69 91.1962V91.1962C70.1046 90.5584 71 91.0754 71 92.3509V92.5129C71 93.7884 70.1046 95.3393 69 95.977V95.977C67.8954 96.6147 67 96.0978 67 94.8223V94.6603Z"
  388. ></path>
  389. </mask>
  390. <path
  391. fill="#91DDFB"
  392. d="M67 94.6603C67 93.3848 67.8954 91.8339 69 91.1962V91.1962C70.1046 90.5584 71 91.0754 71 92.3509V92.5129C71 93.7884 70.1046 95.3393 69 95.977V95.977C67.8954 96.6147 67 96.0978 67 94.8223V94.6603Z"
  393. ></path>
  394. <path
  395. mask="url(#path-28-inside-2_204_217)"
  396. fill="#489CB7"
  397. d="M67 92.3509L71 90.0415L67 92.3509ZM71.6928 92.5129C71.6928 94.0093 70.6423 95.8288 69.3464 96.577L69.3464 96.577C68.0505 97.3252 67 96.7187 67 95.2223V94.8223C67 95.6559 67.8954 95.8147 69 95.177L69 95.177C69.7219 94.7602 70.3072 93.7465 70.3072 92.9129L71.6928 92.5129ZM67 97.1317V92.3509V97.1317ZM69.2762 91.0367C70.6109 90.2661 71.6928 90.8908 71.6928 92.4319V92.5129C71.6928 94.0093 70.6423 95.8288 69.3464 96.577L69 95.177C69.7219 94.7602 70.3072 93.7465 70.3072 92.9129V92.7509C70.3072 91.4754 69.7219 90.7794 69 91.1962L69.2762 91.0367Z"
  398. ></path>
  399. </g>
  400. <defs>
  401. <linearGradient
  402. gradientUnits="userSpaceOnUse"
  403. y2="92.0933"
  404. x2="92.5421"
  405. y1="92.0933"
  406. x1="1.00946"
  407. id="paint0_linear_204_217"
  408. >
  409. <stop stop-color="#5727CC"></stop>
  410. <stop stop-color="#4354BF" offset="1"></stop>
  411. </linearGradient>
  412. <linearGradient
  413. gradientUnits="userSpaceOnUse"
  414. y2="91.1638"
  415. x2="6.72169"
  416. y1="70"
  417. x1="92.5"
  418. id="paint1_linear_204_217"
  419. >
  420. <stop stop-color="#4559C4"></stop>
  421. <stop stop-color="#332C94" offset="0.29"></stop>
  422. <stop stop-color="#5727CB" offset="1"></stop>
  423. </linearGradient>
  424. <linearGradient
  425. gradientUnits="userSpaceOnUse"
  426. y2="85.0762"
  427. x2="3.55544"
  428. y1="70"
  429. x1="92.5"
  430. id="paint2_linear_204_217"
  431. >
  432. <stop stop-color="#91DDFB"></stop>
  433. <stop stop-color="#8841D5" offset="1"></stop>
  434. </linearGradient>
  435. <linearGradient
  436. gradientUnits="userSpaceOnUse"
  437. y2="32.558"
  438. x2="43.5482"
  439. y1="28.7976"
  440. x1="43.5482"
  441. id="paint3_linear_204_217"
  442. >
  443. <stop stop-color="#5927CE"></stop>
  444. <stop stop-color="#91DDFB" offset="1"></stop>
  445. </linearGradient>
  446. <linearGradient
  447. gradientUnits="userSpaceOnUse"
  448. y2="48.3519"
  449. x2="50.0323"
  450. y1="44.5915"
  451. x1="50.0323"
  452. id="paint4_linear_204_217"
  453. >
  454. <stop stop-color="#5927CE"></stop>
  455. <stop stop-color="#91DDFB" offset="1"></stop>
  456. </linearGradient>
  457. <linearGradient
  458. gradientUnits="userSpaceOnUse"
  459. y2="62.6416"
  460. x2="40.3062"
  461. y1="59.6332"
  462. x1="40.3062"
  463. id="paint5_linear_204_217"
  464. >
  465. <stop stop-color="#5927CE"></stop>
  466. <stop stop-color="#91DDFB" offset="1"></stop>
  467. </linearGradient>
  468. <linearGradient
  469. gradientUnits="userSpaceOnUse"
  470. y2="73.9229"
  471. x2="50.7527"
  472. y1="68.6583"
  473. x1="50.7527"
  474. id="paint6_linear_204_217"
  475. >
  476. <stop stop-color="#5927CE"></stop>
  477. <stop stop-color="#91DDFB" offset="1"></stop>
  478. </linearGradient>
  479. <linearGradient
  480. gradientUnits="userSpaceOnUse"
  481. y2="76.9312"
  482. x2="48.5913"
  483. y1="74.675"
  484. x1="48.5913"
  485. id="paint7_linear_204_217"
  486. >
  487. <stop stop-color="#5927CE"></stop>
  488. <stop stop-color="#91DDFB" offset="1"></stop>
  489. </linearGradient>
  490. <linearGradient
  491. gradientUnits="userSpaceOnUse"
  492. y2="67.1541"
  493. x2="52.9153"
  494. y1="66.402"
  495. x1="52.9153"
  496. id="paint8_linear_204_217"
  497. >
  498. <stop stop-color="#5927CE"></stop>
  499. <stop stop-color="#91DDFB" offset="1"></stop>
  500. </linearGradient>
  501. <linearGradient
  502. gradientUnits="userSpaceOnUse"
  503. y2="43.8394"
  504. x2="52.1936"
  505. y1="41.5832"
  506. x1="52.1936"
  507. id="paint9_linear_204_217"
  508. >
  509. <stop stop-color="#5927CE"></stop>
  510. <stop stop-color="#91DDFB" offset="1"></stop>
  511. </linearGradient>
  512. <linearGradient
  513. gradientUnits="userSpaceOnUse"
  514. y2="29.5497"
  515. x2="57.2367"
  516. y1="27.2935"
  517. x1="57.2367"
  518. id="paint10_linear_204_217"
  519. >
  520. <stop stop-color="#5927CE"></stop>
  521. <stop stop-color="#91DDFB" offset="1"></stop>
  522. </linearGradient>
  523. <linearGradient
  524. gradientUnits="userSpaceOnUse"
  525. y2="34.8144"
  526. x2="43.9084"
  527. y1="33.3102"
  528. x1="43.9084"
  529. id="paint11_linear_204_217"
  530. >
  531. <stop stop-color="#5927CE"></stop>
  532. <stop stop-color="#91DDFB" offset="1"></stop>
  533. </linearGradient>
  534. <linearGradient
  535. gradientUnits="userSpaceOnUse"
  536. y2="16.0743"
  537. x2="62.9858"
  538. y1="88.5145"
  539. x1="67.8638"
  540. id="paint12_linear_204_217"
  541. >
  542. <stop stop-color="#97E6FF"></stop>
  543. <stop stop-opacity="0" stop-color="white" offset="1"></stop>
  544. </linearGradient>
  545. <linearGradient
  546. gradientUnits="userSpaceOnUse"
  547. y2="39.4139"
  548. x2="31.4515"
  549. y1="88.0938"
  550. x1="36.2597"
  551. id="paint13_linear_204_217"
  552. >
  553. <stop stop-color="#97E6FF"></stop>
  554. <stop stop-opacity="0" stop-color="white" offset="1"></stop>
  555. </linearGradient>
  556. </defs>
  557. </svg>
  558. <div class="app-loading-title">%VITE_APP_TITLE%</div>
  559. </div>
  560. </div>
  561. </div>
  562. </div>
  563. <script type="module" src="/src/main.ts"></script>
  564. </body>
  565. </html>