65 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8" />
 | 
						|
    <link rel="icon" href="/dist/public/favicon.ico" />
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
    <title></title>
 | 
						|
    <meta name="keywords" content="title" />
 | 
						|
    <meta name="description" content="title" />
 | 
						|
    <style>
 | 
						|
        /* 美化整个滚动条 */
 | 
						|
        ::-webkit-scrollbar {
 | 
						|
            width: 8px; /* 设置滚动条的宽度 */
 | 
						|
            background-color: #f9f9f9; /* 滚动条的背景颜色 */
 | 
						|
        }
 | 
						|
 | 
						|
        /* 美化滚动条轨道 */
 | 
						|
        ::-webkit-scrollbar-track {
 | 
						|
            background: #e1e1e1; /* 轨道的背景颜色 */
 | 
						|
            border-radius: 10px; /* 轨道的圆角 */
 | 
						|
        }
 | 
						|
 | 
						|
        /* 美化滚动条的滑块 */
 | 
						|
        ::-webkit-scrollbar-thumb {
 | 
						|
            background-color: #c1c1c1; /* 滑块的背景颜色 */
 | 
						|
            border-radius: 10px; /* 滑块的圆角 */
 | 
						|
            border: 2px solid #ffffff; /* 滑块边框 */
 | 
						|
        }
 | 
						|
 | 
						|
        /* 当滑块悬停或活动时的样式 */
 | 
						|
        ::-webkit-scrollbar-thumb:hover {
 | 
						|
            background: #a8a8a8; /* 悬停或活动状态下滑块的背景颜色 */
 | 
						|
        }
 | 
						|
        body {
 | 
						|
            margin: 0;
 | 
						|
            width: 100%;
 | 
						|
            height: 100%;
 | 
						|
        }
 | 
						|
        .gjz_css{
 | 
						|
            font-weight: 600;
 | 
						|
            color: #ff0000;
 | 
						|
            text-decoration: underline;
 | 
						|
            position: relative;
 | 
						|
            padding-right: 15px;
 | 
						|
        }
 | 
						|
 | 
						|
        .gjz_css::after {
 | 
						|
            content: '✚'; /* Font Awesome 的用户图标 Unicode */
 | 
						|
            font-family: 'FontAwesome'; /* 确保使用正确的字体 */
 | 
						|
            font-size: 12px; /* 图标大小 */
 | 
						|
            color: #ff0000; /* 图标颜色 */
 | 
						|
            position: absolute;
 | 
						|
            top: -4px; /* 根据需要调整图标位置 */
 | 
						|
            right: 3px; /* 根据需要调整图标位置 */
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
</head>
 | 
						|
<body style="margin: 0;">
 | 
						|
 | 
						|
<div id="app"></div>
 | 
						|
 | 
						|
<script type="module" src="/src/main.js"></script>
 | 
						|
</body>
 | 
						|
</html>
 |