返回 VideoClaw
static_excerpt.html
根目录 / video-claw / video-claw / backend / templates / 1080x1920 / static_excerpt.html
1 <!DOCTYPE html>
2 <html lang="zh-CN">
3
4 <head>
5 <meta charset="UTF-8">
6 <meta name="template:media-width" content="1024">
7 <meta name="template:media-height" content="1024">
8 <meta name="viewport" content="width=1080, height=1920">
9 <title>图书摘抄 - 1080x1920</title>
10 <!-- Google Fonts - 中文字体 -->
11 <link rel="preconnect" href="https://fonts.googleapis.com">
12 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
13 <link
14 href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600&family=Ma+Shan+Zheng&family=ZCOOL+KuaiLe&display=swap"
15 rel="stylesheet">
16 <style>
17 * {
18 margin: 0;
19 padding: 0;
20 box-sizing: border-box;
21 }
22
23 html,
24 body {
25 width: 1080px;
26 height: 1920px;
27 overflow: hidden;
28 }
29
30 body {
31 font-family: 'Noto Serif SC', serif;
32 color: #2a2a2a;
33 position: relative;
34 background: transparent;
35 display: flex;
36 flex-direction: column;
37 padding: 80px 100px;
38 }
39
40 .media-bg {
41 position: absolute;
42 inset: 0;
43 z-index: 0;
44 overflow: hidden;
45 }
46
47 /* 背景遮罩层 */
48 body::before {
49 content: '';
50 position: absolute;
51 inset: 0;
52 background: rgba(232, 229, 224, 0.85);
53 backdrop-filter: blur(10px);
54 -webkit-backdrop-filter: blur(10px);
55 z-index: 0;
56 }
57
58 /* 顶部标题 */
59 .header {
60 position: relative;
61 z-index: 1;
62 margin-bottom: 80px;
63 }
64
65 .title {
66 font-size: 48px;
67 font-weight: 500;
68 font-family: 'Ma Shan Zheng', 'ZCOOL KuaiLe', cursive;
69 color: #2a2a2a;
70 letter-spacing: 8px;
71 text-align: left;
72 padding-bottom: 15px;
73 border-bottom: 2px solid #2a2a2a;
74 }
75
76 /* 正文区域 */
77 .content {
78 position: relative;
79 z-index: 1;
80 /* flex: 1; */
81 margin-bottom: 60px;
82 }
83
84 .excerpt {
85 font-size: 36px;
86 font-weight: 400;
87 line-height: 2.0;
88 font-family: 'Noto Serif SC', serif;
89 color: #2a2a2a;
90 text-align: justify;
91 text-indent: 2em;
92 letter-spacing: 1px;
93 white-space: pre-line;
94 }
95
96
97 /* 署名 */
98 .author {
99 position: relative;
100 z-index: 1;
101 text-align: right;
102 font-size: 32px;
103 font-family: 'Noto Serif SC', serif;
104 color: #2a2a2a;
105 font-weight: 400;
106 }
107
108 .signature {
109 position: absolute;
110 font-size: 24px;
111 font-family: 'Liu Jian Mao Cao', 'ZCOOL KuaiLe', cursive;
112 color: #333;
113 bottom: 20px;
114 left: 50%;
115 transform: translateX(-50%);
116 }
117 </style>
118 </head>
119
120 <body>
121 <div class="media-bg">{{media}}</div>
122
123 <!-- 顶部标题 -->
124 <div class="header">
125 <div class="title">{{title}}</div>
126 </div>
127
128 <!-- 正文内容 -->
129 <div class="content">
130 <div class="excerpt">{{text}}</div>
131 </div>
132
133 <!-- 作者 -->
134 <div class="author">——{{author=HITsz-TMG}}</div>
135
136 <!-- 署名 -->
137 <div class="signature">{{signature=HITsz-TMG}}</div>
138 </body>
139
140 </html>
141
141 lines HTML