1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1, shrink-to-fit=no"
- />
- <title>商品系统</title>
- <style>
- body {
- margin: 0;
- }
- #root {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100vw;
- height: 100vh;
- background: #fff;
- color: #444;
- font-size: 16px;
- }
- #root img {
- display: block;
- width: 200px;
- height: 200px;
- margin-bottom: 20px;
- }
- </style>
- </head>
- <body>
- <div id="root">
- <img src="http://oss.caihongxingqiu.net/management/rainbowstart_logo.png" alt="Logo">
- <span>系统正在加载中,请耐心等待</span>
- </div>
- </body>
- </html>
|