| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8"/>
- <link rel="icon" href="/favicon.ico"/>
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
- <title>功率预测系统</title>
- </head>
- <body>
- <div id="app"></div>
- <script type="module" src="/src/main.js"></script>
- </body>
- </html>
- <style>
- html, body {
- height: 100%;
- width: 100%;
- overflow: hidden;
- }
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- /* text-align: center; */
- color: #2c3e50;
- /* margin-top: 60px; */
- height: inherit;
- overflow: hidden;
- }
- /* 谷歌美化滚动条 */
- *::-webkit-scrollbar {
- width: 6px;
- height: 10px;
- }
- /* 滚动条栏位背景色 */
- *::-webkit-scrollbar-track {
- background: f0f2f5;
- border-radius: 2px;
- }
- /* 滚动条颜色 */
- *::-webkit-scrollbar-thumb {
- /*background: rgb(166, 165, 231);*/
- background: #c8d2e0;
- /*border-radius: 10px;*/
- }
- *::-webkit-scrollbar-thumb:hover {
- background: #c8d2e0;
- }
- *::-webkit-scrollbar-corner {
- background: #c8d2e0;
- }
- </style>
|