| 123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>长江行游轮 | Vista Cruises</title>
- <style>
- /* Hide scrollbar for Chrome, Safari and Opera */
- .no-scrollbar::-webkit-scrollbar {
- display: none;
- }
- /* Hide scrollbar for IE, Edge and Firefox */
- .no-scrollbar {
- -ms-overflow-style: none; /* IE and Edge */
- scrollbar-width: none; /* Firefox */
- }
- html {
- scroll-behavior: smooth;
- }
- </style>
- </head>
- <body>
- <div id="root"></div>
- <script type="module" src="/index.tsx"></script>
- </body>
- </html>
|