| 123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, viewport-fit=cover">
- <link rel="icon" href="<%= BASE_URL %>favicon.png">
- <title>tnbapp</title>
- <style>
- html, body {
- margin: 0;
- padding: 0;
- /* 禁止系统默认菜单(如长按图片保存) */
- -webkit-touch-callout: none;
- /* 避免点击时出现阴影 */
- -webkit-tap-highlight-color: transparent;
- /* 字体平滑渲染 */
- -webkit-font-smoothing: antialiased;
- background-color: #f4f4f4;
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>很抱歉,如果没有 JavaScript,tnbapp 移动端无法正常工作。请启用它以继续。</strong>
- </noscript>
- <div id="app"></div>
- </body>
- </html>
|