精简模板

This commit is contained in:
puke
2025-11-07 19:00:20 +08:00
parent a2709485e1
commit 363fbfa0a8
8 changed files with 1 additions and 3466 deletions

View File

@@ -1,128 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, height=1080">
<title>杂志封面风格 - 1080x1080</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 1080px; height: 1080px; overflow: hidden; }
body {
font-family: 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
background: #ffffff;
color: #1a1a1a;
display: flex;
flex-direction: column;
padding: 50px 50px 40px;
position: relative;
height: 100%;
min-height: 0;
}
/* 顶部标题区 - 超大字号 */
.header {
text-align: center;
margin-bottom: 15px;
position: relative;
z-index: 3;
flex-shrink: 0;
flex-grow: 0;
}
.title {
font-size: 88px;
font-weight: 900;
line-height: 1.1;
color: #1a1a1a;
letter-spacing: -1px;
text-transform: uppercase;
text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}
/* 装饰线条 */
.header::after {
content: '';
display: block;
width: 200px;
height: 5px;
background: linear-gradient(90deg, transparent, #e63946, transparent);
margin: 15px auto 0;
}
/* 图片区域 - 占据大部分空间 */
.image-section {
flex: 1 1 0;
display: flex;
align-items: center;
justify-content: center;
margin: 10px 0;
position: relative;
min-height: 0;
overflow: hidden;
}
.image-container {
width: 100%;
height: 100%;
max-height: 100%;
position: relative;
border: 8px solid #000;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* 底部文字区 - 小字号,杂志风格 */
.footer {
text-align: center;
margin-top: 10px;
padding-top: 15px;
padding-bottom: 5px;
border-top: 3px solid #000;
position: relative;
z-index: 3;
flex-shrink: 0;
flex-grow: 0;
min-height: 60px;
}
.text {
font-size: 32px;
font-weight: 600;
line-height: 1.5;
color: #2d3436;
letter-spacing: 0.5px;
text-transform: uppercase;
max-width: 900px;
margin: 0 auto;
}
@media (max-width: 1080px) {
.title { font-size: 78px; }
.text { font-size: 28px; }
}
</style>
</head>
<body>
<div class="header">
<div class="title">{{title}}</div>
</div>
<div class="image-section">
<div class="image-container">
<img src="{{image}}" alt="内容图片">
</div>
</div>
<div class="footer">
<div class="text">{{text}}</div>
</div>
</body>
</html>

View File

@@ -1,151 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, height=1080">
<title>活力圆形风格 - 1080x1080</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 1080px; height: 1080px; overflow: hidden; }
body {
font-family: 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 60px;
}
/* 装饰圆形 */
.deco-circle {
position: absolute;
border-radius: 50%;
opacity: 0.3;
z-index: 1;
}
.deco-circle-1 {
width: 200px;
height: 200px;
background: #ff6b6b;
top: 10%;
left: 10%;
}
.deco-circle-2 {
width: 150px;
height: 150px;
background: #4ecdc4;
top: 15%;
right: 15%;
}
.deco-circle-3 {
width: 180px;
height: 180px;
background: #ffe66d;
bottom: 15%;
left: 15%;
}
.deco-circle-4 {
width: 120px;
height: 120px;
background: #a8e6cf;
bottom: 10%;
right: 10%;
}
/* 标题 */
.header {
text-align: center;
margin-bottom: 50px;
z-index: 3;
}
.title {
font-size: 68px;
font-weight: 900;
line-height: 1.2;
color: #ffffff;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
letter-spacing: 2px;
}
/* 圆形图片容器 */
.image-section {
width: 580px;
height: 580px;
position: relative;
z-index: 2;
margin: 20px 0;
}
.image-container {
width: 100%;
height: 100%;
border-radius: 50%;
overflow: hidden;
border: 12px solid #ffffff;
box-shadow:
0 20px 60px rgba(0,0,0,0.3),
0 0 0 8px rgba(255,255,255,0.5);
background: #fff;
}
.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* 文字 */
.footer {
text-align: center;
margin-top: 40px;
z-index: 3;
}
.text {
font-size: 38px;
font-weight: 700;
line-height: 1.4;
color: #ffffff;
text-shadow: 0 2px 12px rgba(0,0,0,0.3);
max-width: 800px;
margin: 0 auto;
}
@media (max-width: 1080px) {
.title { font-size: 60px; }
.text { font-size: 34px; }
.image-section { width: 520px; height: 520px; }
}
</style>
</head>
<body>
<div class="deco-circle deco-circle-1"></div>
<div class="deco-circle deco-circle-2"></div>
<div class="deco-circle deco-circle-3"></div>
<div class="deco-circle deco-circle-4"></div>
<div class="header">
<div class="title">{{title}}</div>
</div>
<div class="image-section">
<div class="image-container">
<img src="{{image}}" alt="内容图片">
</div>
</div>
<div class="footer">
<div class="text">{{text}}</div>
</div>
</body>
</html>

View File

@@ -1,94 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, height=1920">
<title>书封横幅风 - 1080x1920</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 1080px; height: 1920px; overflow: hidden; }
body {
font-family: 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
background: #0f2b4e;
display: flex;
flex-direction: column;
color: #fff;
}
/* 顶部标题区 */
.top {
height: 28%;
background: #0f2b4e; /* 深蓝 */
padding: 80px 70px 40px 70px;
position: relative;
display: flex;
align-items: flex-end;
justify-content: center;
text-align: center;
}
.headline-main {
font-weight: 900;
font-size: 84px;
color: #ffffff;
text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
/* 顶部分隔线 */
.divider { height: 8px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent); box-shadow: inset 0 -2px 0 rgba(0,0,0,0.25); }
/* 中部图片区 */
.middle {
height: 56%;
background: #0c0f16;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.image-frame { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.image-mask { position: absolute; inset: 0; padding: 28px 28px 100px 28px; }
.image-mask > .img { width: 100%; height: 100%; overflow: hidden; background: #121620; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.image-mask > .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 播放按钮装饰(可选视觉元素) */
.play { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.08); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 0 0 2px rgba(255,255,255,0.15); }
.play:before { content: ''; width: 0; height: 0; border-left: 58px solid rgba(255,255,255,0.95); border-top: 38px solid transparent; border-bottom: 38px solid transparent; margin-left: 8px; }
/* 底部字幕条(仅 text 占位符)*/
.caption-wrap { position: absolute; left: 0; right: 0; bottom: 22px; display: flex; justify-content: center; padding: 0 32px; pointer-events: none; }
.caption { display: inline-block; max-width: 96%; font-size: 56px; font-weight: 900; line-height: 1.2; color: #ffffff; text-align: center; text-shadow: 0 0 0 #000, -4px -4px 0 #000, 4px -4px 0 #000, -4px 4px 0 #000, 4px 4px 0 #000, 0 8px 20px rgba(0,0,0,0.65); }
/* 底部留白区(不再显示品牌/其他占位符) */
.bottom { height: 16%; background: #0f2b4e; }
@media (max-width: 1080px) { .headline-main { font-size: 72px; } .caption { font-size: 48px; } }
</style>
</head>
<body>
<div class="top">
<div class="headline-main">{{title}}</div>
</div>
<div class="divider"></div>
<div class="middle">
<div class="image-frame">
<div class="image-mask">
<div class="img"><img src="{{image}}" alt="内容图片"></div>
</div>
<div class="play" aria-hidden="true"></div>
<div class="caption-wrap"><div class="caption">{{text}}</div></div>
</div>
</div>
<div class="bottom"></div>
</body>
</html>

View File

@@ -1,408 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, height=1920">
<title>视频模板 - 自然清新风格</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 1080px;
height: 1920px;
overflow: hidden;
}
body {
background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #d1fae5 100%);
font-family: 'Inter', 'PingFang SC', 'Source Han Sans', sans-serif;
display: flex;
position: relative;
color: #065f46;
}
/* 背景装饰 */
.bg-decoration {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}
/* 清新光晕 */
.fresh-glow {
position: absolute;
border-radius: 50%;
filter: blur(90px);
}
.glow-1 {
width: 750px;
height: 750px;
background: radial-gradient(circle, rgba(52, 211, 153, 0.25), transparent);
top: -300px;
left: -200px;
}
.glow-2 {
width: 650px;
height: 650px;
background: radial-gradient(circle, rgba(99, 240, 206, 0.2), transparent);
bottom: 150px;
right: -150px;
}
.glow-3 {
width: 550px;
height: 550px;
background: radial-gradient(circle, rgba(209, 250, 229, 0.3), transparent);
top: 45%;
right: 150px;
}
/* 装饰叶子形状 */
.leaf {
position: absolute;
width: 120px;
height: 120px;
background: rgba(52, 211, 153, 0.15);
border-radius: 60% 0 60% 0;
transform: rotate(45deg);
}
.leaf-1 {
top: 20%;
right: 100px;
box-shadow: 0 0 30px rgba(52, 211, 153, 0.2);
}
.leaf-2 {
bottom: 30%;
left: 80px;
transform: rotate(-30deg);
box-shadow: 0 0 30px rgba(99, 240, 206, 0.2);
}
/* 装饰圆形 */
.circle-deco {
position: absolute;
border-radius: 50%;
border: 3px solid rgba(52, 211, 153, 0.25);
background: transparent;
}
.circle-1 {
width: 150px;
height: 150px;
top: 15%;
right: 150px;
box-shadow: 0 0 40px rgba(52, 211, 153, 0.15);
}
.circle-2 {
width: 120px;
height: 120px;
bottom: 25%;
left: 120px;
box-shadow: 0 0 40px rgba(99, 240, 206, 0.15);
}
/* 装饰线条 */
.wave-line {
position: absolute;
height: 3px;
background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.4), transparent);
border-radius: 15px;
}
.wave-1 {
width: 400px;
top: 22%;
left: 60px;
transform: rotate(-10deg) scaleY(1.5);
}
.wave-2 {
width: 350px;
top: 62%;
right: 100px;
transform: rotate(15deg) scaleY(1.5);
}
/* 装饰点 */
.dot {
position: absolute;
border-radius: 50%;
background: rgba(52, 211, 153, 0.4);
}
.dot-1 {
width: 16px;
height: 16px;
top: 18%;
left: 200px;
box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
}
.dot-2 {
width: 12px;
height: 12px;
top: 58%;
right: 180px;
box-shadow: 0 0 20px rgba(99, 240, 206, 0.5);
}
.dot-3 {
width: 14px;
height: 14px;
bottom: 22%;
left: 150px;
box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
}
/* 主容器 */
.container {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
padding: 80px 60px 70px;
position: relative;
z-index: 2;
}
/* 标题区域 */
.header {
margin-bottom: 70px;
text-align: center;
position: relative;
}
.title-badge {
display: inline-block;
padding: 8px 24px;
background: rgba(52, 211, 153, 0.15);
border: 2px solid rgba(52, 211, 153, 0.4);
border-radius: 30px;
font-size: 22px;
color: #059669;
margin-bottom: 18px;
font-weight: 600;
letter-spacing: 1px;
}
.title {
font-size: 78px;
font-weight: 800;
line-height: 1.1;
color: #064e3b;
letter-spacing: -1px;
margin-bottom: 0;
position: relative;
display: inline-block;
text-shadow: 0 2px 10px rgba(52, 211, 153, 0.2);
}
.title::before,
.title::after {
content: '🌿';
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 40px;
opacity: 0.6;
}
.title::before {
left: -70px;
}
.title::after {
right: -70px;
}
/* 图片区域 */
.image-section {
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin: 40px 0;
}
.image-container {
width: 900px;
height: 900px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
background: #ffffff;
border-radius: 32px;
overflow: hidden;
border: 4px solid rgba(52, 211, 153, 0.2);
box-shadow:
0 25px 80px rgba(52, 211, 153, 0.15),
0 10px 30px rgba(0, 0, 0, 0.06),
inset 0 0 0 1px rgba(52, 211, 153, 0.1);
}
.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* 装饰角标 */
.corner-leaf {
position: absolute;
width: 60px;
height: 60px;
background: rgba(52, 211, 153, 0.2);
border-radius: 0 100% 0 100%;
z-index: 10;
}
.corner-leaf.top-left {
top: 20px;
left: 20px;
}
.corner-leaf.bottom-right {
bottom: 20px;
right: 20px;
border-radius: 100% 0 100% 0;
background: rgba(99, 240, 206, 0.2);
}
/* 内容区域 */
.content-section {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0;
position: relative;
}
.content-text {
font-size: 42px;
font-weight: 500;
line-height: 1.8;
color: #065f46;
max-width: 88%;
position: relative;
padding: 50px 60px;
background: rgba(255, 255, 255, 0.7);
border-radius: 30px;
border: 2px solid rgba(52, 211, 153, 0.25);
box-shadow:
0 20px 50px rgba(52, 211, 153, 0.12),
0 5px 15px rgba(0, 0, 0, 0.05);
backdrop-filter: blur(10px);
}
/* 底部装饰 */
.footer {
display: flex;
justify-content: center;
align-items: center;
padding: 20px 0 0;
margin-top: auto;
gap: 12px;
}
.accent-circle {
width: 10px;
height: 10px;
border-radius: 50%;
background: linear-gradient(135deg, #10b981, #34d399);
box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}
.accent-circle:nth-child(1) { width: 14px; height: 14px; }
.accent-circle:nth-child(2) { width: 10px; height: 10px; }
.accent-circle:nth-child(3) { width: 12px; height: 12px; }
/* 响应式 */
@media (max-width: 1080px) {
.container {
padding: 70px 50px 60px;
}
.title {
font-size: 66px;
}
.image-container {
width: 800px;
height: 800px;
}
.content-text {
font-size: 36px;
padding: 40px 50px;
}
}
</style>
</head>
<body>
<!-- 背景装饰 -->
<div class="bg-decoration">
<div class="fresh-glow glow-1"></div>
<div class="fresh-glow glow-2"></div>
<div class="fresh-glow glow-3"></div>
<div class="leaf leaf-1"></div>
<div class="leaf leaf-2"></div>
<div class="circle-deco circle-1"></div>
<div class="circle-deco circle-2"></div>
<div class="wave-line wave-1"></div>
<div class="wave-line wave-2"></div>
<div class="dot dot-1"></div>
<div class="dot dot-2"></div>
<div class="dot dot-3"></div>
</div>
<!-- 主要内容容器 -->
<div class="container">
<!-- 标题区域 -->
<div class="header">
<div class="title-badge">NATURE</div>
<div class="title">{{title}}</div>
</div>
<!-- 图片区域 -->
<div class="image-section">
<div class="image-container">
<img src="{{image}}" alt="内容图片">
<div class="corner-leaf top-left"></div>
<div class="corner-leaf bottom-right"></div>
</div>
</div>
<!-- 内容区域 -->
<div class="content-section">
<div class="content-text">{{text}}</div>
</div>
<!-- 底部装饰条 -->
<div class="footer">
<div class="accent-circle"></div>
<div class="accent-circle"></div>
<div class="accent-circle"></div>
</div>
</div>
</body>
</html>

View File

@@ -113,7 +113,7 @@
/* 人生感悟 - 大红色粗体 */
.highlight-text {
font-size: 80px;
color: #FF0000;
color: #FFFFFF;
font-weight: 400;
letter-spacing: 3px;
text-align: center;

View File

@@ -1,341 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, height=1920">
<title>视频模板 - 极简现代风格</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 1080px;
height: 1920px;
overflow: hidden;
}
body {
background: #ffffff;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', sans-serif;
display: flex;
position: relative;
color: #000000;
}
/* 背景装饰 */
.bg-decoration {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}
/* 极简线条 */
.minimal-line {
position: absolute;
background: linear-gradient(90deg, transparent, #000000, transparent);
opacity: 0.03;
}
.line-1 {
width: 600px;
height: 1px;
top: 20%;
right: 50px;
transform: rotate(-5deg);
}
.line-2 {
width: 500px;
height: 1px;
top: 60%;
left: 80px;
transform: rotate(8deg);
}
.line-3 {
width: 400px;
height: 1px;
bottom: 20%;
right: 100px;
transform: rotate(-3deg);
}
/* 极简圆形 */
.circle {
position: absolute;
border-radius: 50%;
border: 1px solid #000000;
opacity: 0.04;
}
.circle-1 {
width: 400px;
height: 400px;
top: -150px;
right: -100px;
}
.circle-2 {
width: 300px;
height: 300px;
bottom: 150px;
left: -80px;
}
.circle-3 {
width: 200px;
height: 200px;
top: 50%;
left: 150px;
}
/* 装饰点 */
.dot {
position: absolute;
border-radius: 50%;
background: #000000;
opacity: 0.06;
}
.dot-1 {
width: 120px;
height: 120px;
top: 15%;
left: 100px;
}
.dot-2 {
width: 80px;
height: 80px;
bottom: 25%;
right: 120px;
}
/* 主容器 */
.container {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
padding: 100px 80px 90px;
position: relative;
z-index: 2;
}
/* 标题区域 */
.header {
margin-bottom: 100px;
text-align: center;
position: relative;
}
.title-accent {
font-size: 14px;
color: #000000;
letter-spacing: 8px;
margin-bottom: 20px;
font-weight: 300;
opacity: 0.4;
text-transform: uppercase;
}
.title {
font-size: 86px;
font-weight: 300;
line-height: 1.1;
color: #000000;
letter-spacing: -3px;
margin-bottom: 0;
position: relative;
display: inline-block;
}
.title-underline {
margin-top: 30px;
height: 2px;
width: 100px;
background: #000000;
margin-left: auto;
margin-right: auto;
}
/* 图片区域 */
.image-section {
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin: 50px 0;
}
.image-container {
width: 900px;
height: 900px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
border-radius: 8px;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* 极简装饰点 */
.minimal-dot {
position: absolute;
width: 6px;
height: 6px;
background: #000000;
opacity: 0.2;
}
.minimal-dot.top-left {
top: 40px;
left: 40px;
}
.minimal-dot.top-right {
top: 40px;
right: 40px;
}
.minimal-dot.bottom-left {
bottom: 40px;
left: 40px;
}
.minimal-dot.bottom-right {
bottom: 40px;
right: 40px;
}
/* 内容区域 */
.content-section {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0;
position: relative;
}
.content-text {
font-size: 40px;
font-weight: 300;
line-height: 1.9;
color: #000000;
max-width: 90%;
position: relative;
padding: 60px 80px;
background: transparent;
border: 1px solid rgba(0, 0, 0, 0.05);
border-radius: 4px;
letter-spacing: 1px;
}
/* 底部装饰 */
.footer {
display: flex;
justify-content: center;
align-items: center;
padding: 30px 0 0;
margin-top: auto;
gap: 8px;
}
.accent-line {
height: 2px;
background: #000000;
opacity: 0.3;
}
.accent-line:nth-child(1) { width: 80px; }
.accent-line:nth-child(2) { width: 40px; }
.accent-line:nth-child(3) { width: 60px; }
/* 响应式 */
@media (max-width: 1080px) {
.container {
padding: 80px 60px 70px;
}
.title {
font-size: 72px;
}
.image-container {
width: 800px;
height: 800px;
}
.content-text {
font-size: 34px;
padding: 50px 60px;
}
}
</style>
</head>
<body>
<!-- 背景装饰 -->
<div class="bg-decoration">
<div class="minimal-line line-1"></div>
<div class="minimal-line line-2"></div>
<div class="minimal-line line-3"></div>
<div class="circle circle-1"></div>
<div class="circle circle-2"></div>
<div class="circle circle-3"></div>
<div class="dot dot-1"></div>
<div class="dot dot-2"></div>
</div>
<!-- 主要内容容器 -->
<div class="container">
<!-- 标题区域 -->
<div class="header">
<div class="title-accent">SIMPLE</div>
<div class="title">{{title}}</div>
<div class="title-underline"></div>
</div>
<!-- 图片区域 -->
<div class="image-section">
<div class="image-container">
<img src="{{image}}" alt="内容图片">
<div class="minimal-dot top-left"></div>
<div class="minimal-dot top-right"></div>
<div class="minimal-dot bottom-left"></div>
<div class="minimal-dot bottom-right"></div>
</div>
</div>
<!-- 内容区域 -->
<div class="content-section">
<div class="content-text">{{text}}</div>
</div>
<!-- 底部装饰条 -->
<div class="footer">
<div class="accent-line"></div>
<div class="accent-line"></div>
<div class="accent-line"></div>
</div>
</div>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@@ -1,747 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
html {
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
width: 1080px;
background:#e9ecef 50%;
font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
position: relative;
overflow: hidden;
}
.page-container {
width: 1080px;
height: 1920px;
padding: 80px 70px 75px 70px;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
z-index: 1;
}
/* 优雅纹理 */
.elegant-texture {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.04;
background-image:
radial-gradient(circle at 25% 30%, rgba(45, 55, 72, 0.08) 1px, transparent 1px),
radial-gradient(circle at 75% 70%, rgba(45, 55, 72, 0.06) 1px, transparent 1px);
background-size: 90px 90px, 120px 120px;
z-index: 0;
}
/* 背景装饰 */
.bg-decoration {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
overflow: hidden;
pointer-events: none;
}
/* 对称圆环装饰 */
.zen-circle {
position: absolute;
border-radius: 50%;
border: 2px solid;
}
.circle-1 {
width: 400px;
height: 400px;
top: 12%;
left: -120px;
border-color: rgba(45, 55, 72, 0.08);
}
.circle-2 {
width: 350px;
height: 350px;
top: 45%;
right: -100px;
border-color: rgba(74, 85, 104, 0.06);
}
.circle-3 {
width: 300px;
height: 300px;
bottom: 18%;
left: -80px;
border-color: rgba(45, 55, 72, 0.07);
}
/* 渐变光晕 */
.soft-glow {
position: absolute;
border-radius: 50%;
filter: blur(60px);
}
.glow-1 {
width: 450px;
height: 450px;
top: -120px;
right: -120px;
background: radial-gradient(circle, rgba(99, 102, 241, 0.06), transparent 70%);
}
.glow-2 {
width: 400px;
height: 400px;
bottom: -80px;
left: -80px;
background: radial-gradient(circle, rgba(79, 70, 229, 0.05), transparent 70%);
}
/* 标题区域 */
.topic-wrapper {
position: relative;
text-align: center;
padding: 35px 0;
}
/* 顶部优雅分界线 */
.top-divider {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 420px;
height: 3px;
background: linear-gradient(90deg,
transparent 0%,
rgba(45, 55, 72, 0.15) 15%,
rgba(74, 85, 104, 0.25) 35%,
rgba(99, 102, 241, 0.3) 50%,
rgba(74, 85, 104, 0.25) 65%,
rgba(45, 55, 72, 0.15) 85%,
transparent 100%);
border-radius: 2px;
}
/* 对称装饰点 */
.top-divider::before,
.top-divider::after {
content: '';
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 8px;
height: 8px;
border-radius: 50%;
background: radial-gradient(circle at 35% 35%, rgba(99, 102, 241, 0.5), rgba(79, 70, 229, 0.4));
box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}
.top-divider::before {
left: 20%;
}
.top-divider::after {
right: 20%;
}
.topic {
font-size: 82px;
font-weight: 800;
background: linear-gradient(135deg,
#1e293b 0%,
#334155 25%,
#475569 45%,
#6366f1 55%,
#475569 70%,
#334155 85%,
#1e293b 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.25;
letter-spacing: 4px;
padding: 30px 0;
position: relative;
display: inline-block;
filter: drop-shadow(0 2px 12px rgba(99, 102, 241, 0.15));
}
/* 标题对称装饰点 */
.title-accent {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 10px;
height: 10px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.6), rgba(79, 70, 229, 0.5));
box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}
.title-accent.left {
left: -25px;
}
.title-accent.right {
right: -25px;
}
/* 图片区域 */
.image-wrapper {
position: relative;
padding: 25px;
}
.image-frame-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.95) 0%,
rgba(255, 255, 255, 0.98) 50%,
rgba(255, 255, 255, 0.95) 100%);
border-radius: 30px;
border: 1px solid rgba(99, 102, 241, 0.12);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.8),
0 20px 60px rgba(99, 102, 241, 0.08),
0 8px 25px rgba(79, 70, 229, 0.05),
inset 0 1px 2px rgba(255, 255, 255, 0.9);
z-index: 0;
}
.image-container {
width: 100%;
height: 900px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
}
.image-container img {
width: 100%;
height: 100%;
border-radius: 25px;
object-fit: cover;
box-shadow:
0 15px 45px rgba(45, 55, 72, 0.08),
0 5px 15px rgba(99, 102, 241, 0.05);
}
/* 四角对称L型装饰 */
.corner-zen {
position: absolute;
z-index: 2;
}
.corner-zen::before,
.corner-zen::after {
content: '';
position: absolute;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(79, 70, 229, 0.3));
border-radius: 2px;
}
.corner-zen.tl {
top: 12px;
left: 12px;
width: 45px;
height: 45px;
}
.corner-zen.tl::before {
width: 45px;
height: 3px;
top: 0;
left: 0;
}
.corner-zen.tl::after {
width: 3px;
height: 45px;
top: 0;
left: 0;
}
.corner-zen.tr {
top: 12px;
right: 12px;
width: 45px;
height: 45px;
}
.corner-zen.tr::before {
width: 45px;
height: 3px;
top: 0;
right: 0;
}
.corner-zen.tr::after {
width: 3px;
height: 45px;
top: 0;
right: 0;
}
.corner-zen.bl {
bottom: 12px;
left: 12px;
width: 45px;
height: 45px;
}
.corner-zen.bl::before {
width: 45px;
height: 3px;
bottom: 0;
left: 0;
}
.corner-zen.bl::after {
width: 3px;
height: 45px;
bottom: 0;
left: 0;
}
.corner-zen.br {
bottom: 12px;
right: 12px;
width: 45px;
height: 45px;
}
.corner-zen.br::before {
width: 45px;
height: 3px;
bottom: 0;
right: 0;
}
.corner-zen.br::after {
width: 3px;
height: 45px;
bottom: 0;
right: 0;
}
/* 侧边对称点装饰 */
.side-dots {
position: absolute;
display: flex;
flex-direction: column;
gap: 16px;
z-index: 2;
}
.side-dots.left {
left: -2px;
top: 50%;
transform: translateY(-50%);
}
.side-dots.right {
right: -2px;
top: 50%;
transform: translateY(-50%);
}
.zen-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(79, 70, 229, 0.4));
box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}
.zen-dot.large {
width: 11px;
height: 11px;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.7), rgba(79, 70, 229, 0.6));
box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}
/* 文字区域 */
.text-wrapper {
position: relative;
padding: 45px 0;
}
.text-bg {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 92%;
height: 100%;
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.92) 0%,
rgba(255, 255, 255, 0.95) 50%,
rgba(255, 255, 255, 0.92) 100%);
border-radius: 25px;
border: 1px solid rgba(99, 102, 241, 0.1);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.7),
0 15px 45px rgba(99, 102, 241, 0.06),
0 5px 15px rgba(79, 70, 229, 0.04),
inset 0 1px 2px rgba(255, 255, 255, 0.8);
z-index: 0;
}
.text {
font-size: 48px;
color: #2d3748;
text-align: center;
line-height: 1.75;
padding: 40px 85px;
position: relative;
height: 237.6px;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
letter-spacing: 1px;
font-weight: 500;
}
/* 引号装饰 */
.quote-mark {
position: absolute;
font-size: 70px;
font-weight: 300;
font-family: Georgia, serif;
opacity: 0.1;
z-index: 0;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(79, 70, 229, 0.7));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.quote-mark.open {
top: 20px;
left: 65px;
}
.quote-mark.close {
bottom: 20px;
right: 65px;
}
/* 侧边对称线条 */
.side-line {
position: absolute;
width: 2px;
height: 150px;
top: 50%;
transform: translateY(-50%);
background: linear-gradient(180deg,
transparent 0%,
rgba(99, 102, 241, 0.2) 15%,
rgba(79, 70, 229, 0.25) 50%,
rgba(99, 102, 241, 0.2) 85%,
transparent 100%);
border-radius: 2px;
z-index: 1;
}
.side-line.left {
left: 50px;
}
.side-line.right {
right: 50px;
}
/* 对称圆点组 */
.side-line::before,
.side-line::after {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 6px;
height: 6px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(79, 70, 229, 0.4));
box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}
.side-line::before {
top: -3px;
}
.side-line::after {
bottom: -3px;
}
/* 页脚 */
.footer {
display: flex;
align-items: center;
justify-content: space-between;
padding: 32px 15px;
position: relative;
}
/* 对称分隔线 */
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg,
transparent 0%,
rgba(99, 102, 241, 0.2) 15%,
rgba(79, 70, 229, 0.25) 35%,
rgba(99, 102, 241, 0.3) 50%,
rgba(79, 70, 229, 0.25) 65%,
rgba(99, 102, 241, 0.2) 85%,
transparent 100%);
border-radius: 2px;
}
.footer::after {
content: '';
position: absolute;
top: -5px;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 12px;
background: radial-gradient(ellipse,
rgba(99, 102, 241, 0.15) 0%,
transparent 70%);
border-radius: 50%;
}
.author {
display: flex;
flex-direction: column;
gap: 10px;
}
.author-name {
font-size: 38px;
font-weight: 700;
background: linear-gradient(135deg,
#1e293b 0%,
#334155 40%,
#6366f1 60%,
#334155 80%,
#1e293b 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: flex;
align-items: center;
gap: 12px;
}
/* 作者装饰点组 */
.author-dots {
display: flex;
gap: 6px;
align-items: center;
}
.author-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.6), rgba(79, 70, 229, 0.5));
}
.author-dot.large {
width: 12px;
height: 12px;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(79, 70, 229, 0.7));
box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}
.author-desc {
font-size: 27px;
color: #718096;
line-height: 1.4;
font-weight: 400;
}
/* Logo区域 */
.logo-wrapper {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 10px;
}
.logo {
font-size: 30px;
font-weight: 700;
background: linear-gradient(135deg,
#6366f1 0%,
#4f46e5 50%,
#6366f1 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: 1.5px;
position: relative;
padding-right: 28px;
}
.logo::after {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
border-radius: 50%;
background: linear-gradient(135deg, #6366f1, #4f46e5);
box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}
/* 对称指示条 */
.zen-bars {
display: flex;
gap: 6px;
align-items: center;
}
.zen-bar {
height: 3px;
border-radius: 2px;
}
.zen-bar:nth-child(1) {
width: 38px;
background: linear-gradient(90deg,
rgba(99, 102, 241, 0.6),
rgba(79, 70, 229, 0.5));
}
.zen-bar:nth-child(2) {
width: 28px;
background: linear-gradient(90deg,
rgba(99, 102, 241, 0.5),
rgba(79, 70, 229, 0.4));
opacity: 0.8;
}
.zen-bar:nth-child(3) {
width: 18px;
background: linear-gradient(90deg,
rgba(99, 102, 241, 0.4),
rgba(79, 70, 229, 0.35));
opacity: 0.6;
}
</style>
</head>
<body>
<!-- 优雅纹理 -->
<div class="elegant-texture"></div>
<!-- 背景装饰元素 -->
<div class="bg-decoration">
<!-- 对称圆环 -->
<div class="zen-circle circle-1"></div>
<div class="zen-circle circle-2"></div>
<div class="zen-circle circle-3"></div>
<!-- 渐变光晕 -->
<div class="soft-glow glow-1"></div>
<div class="soft-glow glow-2"></div>
</div>
<div class="page-container">
<!-- 标题区域 -->
<div class="topic-wrapper">
<div class="top-divider"></div>
<div class="title-accent left"></div>
<div class="title-accent right"></div>
<div class="topic">{{title}}</div>
</div>
<!-- 图片区域 -->
<div class="image-wrapper">
<div class="image-frame-bg"></div>
<!-- 四角装饰 -->
<div class="corner-zen tl"></div>
<div class="corner-zen tr"></div>
<div class="corner-zen bl"></div>
<div class="corner-zen br"></div>
<!-- 侧边对称点 -->
<div class="side-dots left">
<div class="zen-dot"></div>
<div class="zen-dot large"></div>
<div class="zen-dot"></div>
</div>
<div class="side-dots right">
<div class="zen-dot"></div>
<div class="zen-dot large"></div>
<div class="zen-dot"></div>
</div>
<div class="image-container">
<img src="{{image}}" alt="Frame Image">
</div>
</div>
<!-- 文字区域 -->
<div class="text-wrapper">
<div class="text-bg"></div>
<div class="quote-mark open">"</div>
<div class="quote-mark close">"</div>
<div class="side-line left"></div>
<div class="side-line right"></div>
<div class="text">{{text}}</div>
</div>
<!-- 页脚区域 -->
<div class="footer">
<div class="author">
<div class="author-name">
<div class="author-dots">
<div class="author-dot"></div>
<div class="author-dot large"></div>
<div class="author-dot"></div>
</div>
</div>
</div>
<div class="logo-wrapper">
<div class="zen-bars">
<div class="zen-bar"></div>
<div class="zen-bar"></div>
<div class="zen-bar"></div>
</div>
</div>
</div>
</div>
</body>
</html>