51 lines
1.2 KiB
HTML
51 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>自定义报告模板示例</title>
|
|
<style>
|
|
/* 自定义样式示例 */
|
|
body {
|
|
font-family: 'Microsoft YaHei', Arial, sans-serif;
|
|
background: #f0f2f5;
|
|
padding: 20px;
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
/* 内容区域样式 */
|
|
#content {
|
|
line-height: 1.8;
|
|
}
|
|
|
|
h1 {
|
|
color: #1890ff;
|
|
border-bottom: 2px solid #1890ff;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
h2 {
|
|
color: #333;
|
|
margin-top: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<!-- 占位符:内容将在这里插入 -->
|
|
<!-- 支持以下格式之一:{{content}} 或 {content} 或 <!-- content --> -->
|
|
{{content}}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|