<!DOCTYPE html> <html lang="zh-cmn"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>K5Web</title> <style> ::-webkit-scrollbar { width: 12px; height: 4px; } ::-webkit-scrollbar-thumb { border: 4px solid transparent; background-clip: padding-box; border-radius: 7px; background-color: var(--color-text-4); } ::-webkit-scrollbar-thumb:hover { background-color: var(--color-text-3); } </style> <script src="serial.js"></script> </head> <body> <div id="app"></div> <script type="module" src="/src/main.ts"></script> </body> </html>