1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8"/>
- <title>油田勘探AI检索系统</title>
- <base href="/"/>
- <meta name="color-scheme" content="light dark"/>
- <meta
- name="viewport"
- content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
- />
- <meta name="format-detection" content="telephone=no"/>
- <meta name="msapplication-tap-highlight" content="no"/>
- <link rel="shortcut icon" type="image/png" href="<%= BASE_URL %>assets/icon/favicon.png"/>
- <!-- add to homescreen for ios -->
- <meta name="apple-mobile-web-app-capable" content="yes"/>
- <meta name="apple-mobile-web-app-title" content="Ionic App"/>
- <meta name="apple-mobile-web-app-status-bar-style" content="black"/>
- <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
- <style type="text/css">
- .appLoading {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .appLoading img {
- display: block;
- -webkit-animation: rotation 2s linear infinite;
- animation: rotation 2s linear infinite;
- }
- @keyframes rotation {
- 0% {
- -webkit-transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- }
- }
- </style>
- </head>
- <body style="height: 100%;">
- <div id="app"></div>
- <div class="appLoading" style="z-index: 0">
- <img src="mobile/assets/icon/icn_loading.png" alt=""/>
- </div>
- </body>
- </html>
|