Files
piaowu/ruoyi-uia/index.html
T

60 lines
1.3 KiB
HTML
Raw Normal View History

2026-06-10 15:38:37 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/images/piao.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: 0px;
}
/* 滚动条颜色 */
*::-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>