index.html 875 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta
  6. name="viewport"
  7. content="width=device-width, initial-scale=1, shrink-to-fit=no"
  8. />
  9. <title>商品系统</title>
  10. <style>
  11. body {
  12. margin: 0;
  13. }
  14. #root {
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. align-items: center;
  19. width: 100vw;
  20. height: 100vh;
  21. background: #fff;
  22. color: #444;
  23. font-size: 16px;
  24. }
  25. #root img {
  26. display: block;
  27. width: 200px;
  28. height: 200px;
  29. margin-bottom: 20px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div id="root">
  35. <img src="http://oss.caihongxingqiu.net/management/rainbowstart_logo.png" alt="Logo">
  36. <span>系统正在加载中,请耐心等待</span>
  37. </div>
  38. </body>
  39. </html>