新增分镜模版样式
This commit is contained in:
10
.gitignore
vendored
10
.gitignore
vendored
@@ -70,14 +70,4 @@ plans/
|
||||
examples/
|
||||
repositories/
|
||||
|
||||
# Workflows - ignore user customizations but keep defaults
|
||||
|
||||
|
||||
# Templates - ignore user customizations but keep presets
|
||||
templates/*
|
||||
!templates/default.html
|
||||
!templates/modern.html
|
||||
!templates/neon.html
|
||||
!templates/README.md
|
||||
|
||||
*.out
|
||||
|
||||
644
templates/elegant.html
Normal file
644
templates/elegant.html
Normal file
@@ -0,0 +1,644 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 1080px;
|
||||
background: #f5f7fa;
|
||||
font-family: 'PingFang SC', 'Source Han Sans', '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;
|
||||
}
|
||||
|
||||
/* Background artistic elements */
|
||||
.bg-decoration {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 0;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Soft gradient orbs */
|
||||
.orb-1 {
|
||||
position: absolute;
|
||||
width: 700px;
|
||||
height: 700px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle at 40% 40%, rgba(165, 180, 252, 0.45), transparent 70%);
|
||||
top: -280px;
|
||||
left: -250px;
|
||||
filter: blur(80px);
|
||||
}
|
||||
|
||||
.orb-2 {
|
||||
position: absolute;
|
||||
width: 550px;
|
||||
height: 550px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle at 60% 60%, rgba(244, 114, 182, 0.4), transparent 70%);
|
||||
top: 40%;
|
||||
right: -200px;
|
||||
filter: blur(90px);
|
||||
}
|
||||
|
||||
.orb-3 {
|
||||
position: absolute;
|
||||
width: 450px;
|
||||
height: 450px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle at 50% 50%, rgba(196, 181, 253, 0.42), transparent 70%);
|
||||
bottom: -100px;
|
||||
left: 20%;
|
||||
filter: blur(70px);
|
||||
}
|
||||
|
||||
/* Flowing wave lines */
|
||||
.wave-line-1 {
|
||||
position: absolute;
|
||||
width: 800px;
|
||||
height: 3px;
|
||||
top: 18%;
|
||||
left: -100px;
|
||||
background: linear-gradient(90deg, transparent, rgba(165, 180, 252, 0.6), transparent);
|
||||
border-radius: 10px;
|
||||
transform: rotate(-8deg);
|
||||
filter: blur(1px);
|
||||
}
|
||||
|
||||
.wave-line-2 {
|
||||
position: absolute;
|
||||
width: 650px;
|
||||
height: 2px;
|
||||
top: 65%;
|
||||
right: -80px;
|
||||
background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.55), transparent);
|
||||
border-radius: 10px;
|
||||
transform: rotate(12deg);
|
||||
filter: blur(1px);
|
||||
}
|
||||
|
||||
/* Minimal geometric shapes */
|
||||
.geo-rect-1 {
|
||||
position: absolute;
|
||||
width: 180px;
|
||||
height: 180px;
|
||||
top: 25%;
|
||||
right: 50px;
|
||||
border: 2px solid rgba(165, 180, 252, 0.45);
|
||||
border-radius: 50%;
|
||||
transform: rotate(25deg);
|
||||
}
|
||||
|
||||
.geo-rect-2 {
|
||||
position: absolute;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
bottom: 20%;
|
||||
left: 80px;
|
||||
border: 2px solid rgba(244, 114, 182, 0.4);
|
||||
border-radius: 20px;
|
||||
transform: rotate(-15deg);
|
||||
}
|
||||
|
||||
/* Floating dots pattern */
|
||||
.dot-cluster-1, .dot-cluster-2 {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.dot-cluster-1 {
|
||||
top: 12%;
|
||||
left: 120px;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.dot-cluster-2 {
|
||||
bottom: 15%;
|
||||
right: 100px;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.floating-dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, rgba(165, 180, 252, 0.6), rgba(196, 181, 253, 0.5));
|
||||
}
|
||||
|
||||
/* Header section with elegant typography */
|
||||
.topic-wrapper {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
padding: 40px 0;
|
||||
}
|
||||
|
||||
.topic-accent {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 150px;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg, transparent, rgba(165, 180, 252, 0.8), transparent);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.topic {
|
||||
font-size: 78px;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, #7c87f5 0%, #b87ef9 50%, #f06ba8 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
line-height: 1.25;
|
||||
letter-spacing: 2px;
|
||||
padding: 25px 0;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
filter: drop-shadow(0 4px 20px rgba(165, 180, 252, 0.25));
|
||||
}
|
||||
|
||||
.topic::before,
|
||||
.topic::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, rgba(165, 180, 252, 0.5), rgba(196, 181, 253, 0.45));
|
||||
}
|
||||
|
||||
.topic::before {
|
||||
top: -15px;
|
||||
left: -25px;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.topic::after {
|
||||
bottom: -10px;
|
||||
right: -20px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
/* Elegant image frame */
|
||||
.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.65) 0%,
|
||||
rgba(255, 255, 255, 0.45) 50%,
|
||||
rgba(255, 255, 255, 0.55) 100%);
|
||||
border-radius: 30px;
|
||||
backdrop-filter: blur(20px);
|
||||
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: 22px;
|
||||
object-fit: cover;
|
||||
box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12),
|
||||
0 10px 30px rgba(165, 180, 252, 0.2);
|
||||
}
|
||||
|
||||
/* Elegant corner accents */
|
||||
.corner-accent {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.corner-accent.tl {
|
||||
top: 10px;
|
||||
left: 10px;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-top: 4px solid rgba(165, 180, 252, 0.8);
|
||||
border-left: 4px solid rgba(165, 180, 252, 0.8);
|
||||
border-radius: 22px 0 0 0;
|
||||
}
|
||||
|
||||
.corner-accent.br {
|
||||
bottom: 10px;
|
||||
right: 10px;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-bottom: 4px solid rgba(244, 114, 182, 0.75);
|
||||
border-right: 4px solid rgba(244, 114, 182, 0.75);
|
||||
border-radius: 0 0 22px 0;
|
||||
}
|
||||
|
||||
.corner-accent.tr {
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-top: 3px solid rgba(196, 181, 253, 0.75);
|
||||
border-right: 3px solid rgba(196, 181, 253, 0.75);
|
||||
border-radius: 0 22px 0 0;
|
||||
}
|
||||
|
||||
.corner-accent.bl {
|
||||
bottom: 10px;
|
||||
left: 10px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-bottom: 3px solid rgba(165, 180, 252, 0.75);
|
||||
border-left: 3px solid rgba(165, 180, 252, 0.75);
|
||||
border-radius: 0 0 0 22px;
|
||||
}
|
||||
|
||||
/* Side minimal indicators */
|
||||
.side-indicator {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
gap: 18px;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.side-indicator.left {
|
||||
left: -15px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.side-indicator.right {
|
||||
right: -15px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.indicator-dot {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, rgba(165, 180, 252, 0.7), rgba(196, 181, 253, 0.6));
|
||||
box-shadow: 0 0 15px rgba(165, 180, 252, 0.5);
|
||||
}
|
||||
|
||||
.indicator-dot.accent {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
background: linear-gradient(135deg, rgba(244, 114, 182, 0.8), rgba(244, 114, 182, 0.7));
|
||||
box-shadow: 0 0 20px rgba(244, 114, 182, 0.6);
|
||||
}
|
||||
|
||||
/* Text section with elegant design */
|
||||
.text-wrapper {
|
||||
position: relative;
|
||||
padding: 45px 0;
|
||||
}
|
||||
|
||||
.text-bg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 90%;
|
||||
height: 100%;
|
||||
background: linear-gradient(135deg,
|
||||
rgba(255, 255, 255, 0.6) 0%,
|
||||
rgba(255, 255, 255, 0.45) 50%,
|
||||
rgba(255, 255, 255, 0.5) 100%);
|
||||
border-radius: 30px;
|
||||
backdrop-filter: blur(15px);
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 48px;
|
||||
color: #1e293b;
|
||||
text-align: center;
|
||||
line-height: 1.75;
|
||||
padding: 40px 80px;
|
||||
position: relative;
|
||||
height: 237.6px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
letter-spacing: 0.5px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* Quote marks - elegant style */
|
||||
.quote-mark {
|
||||
position: absolute;
|
||||
font-size: 120px;
|
||||
font-weight: 700;
|
||||
font-family: Georgia, serif;
|
||||
opacity: 0.12;
|
||||
line-height: 1;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.quote-mark.open {
|
||||
top: 15px;
|
||||
left: 50px;
|
||||
color: #a5b4fc;
|
||||
}
|
||||
|
||||
.quote-mark.close {
|
||||
bottom: 15px;
|
||||
right: 50px;
|
||||
color: #f4a3c7;
|
||||
}
|
||||
|
||||
/* Minimal side bars */
|
||||
.text-accent-bar {
|
||||
position: absolute;
|
||||
width: 5px;
|
||||
height: 140px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
border-radius: 10px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.text-accent-bar.left {
|
||||
left: 35px;
|
||||
background: linear-gradient(180deg,
|
||||
rgba(165, 180, 252, 0.8) 0%,
|
||||
rgba(165, 180, 252, 0.35) 100%);
|
||||
}
|
||||
|
||||
.text-accent-bar.right {
|
||||
right: 35px;
|
||||
background: linear-gradient(180deg,
|
||||
rgba(244, 114, 182, 0.75) 0%,
|
||||
rgba(244, 114, 182, 0.35) 100%);
|
||||
}
|
||||
|
||||
/* Footer with minimal design */
|
||||
.footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 30px 15px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.footer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg,
|
||||
rgba(165, 180, 252, 0.75) 0%,
|
||||
rgba(196, 181, 253, 0.65) 50%,
|
||||
rgba(244, 114, 182, 0.75) 100%);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.footer::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -3px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 200px;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg,
|
||||
transparent,
|
||||
rgba(165, 180, 252, 0.8),
|
||||
transparent);
|
||||
border-radius: 10px;
|
||||
filter: blur(2px);
|
||||
}
|
||||
|
||||
.author {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.author-name {
|
||||
font-size: 38px;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, #8b96f7 0%, #c4a8fa 70%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.author-icon {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.author-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, rgba(165, 180, 252, 0.9), rgba(196, 181, 253, 0.8));
|
||||
}
|
||||
|
||||
.author-dot.large {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
}
|
||||
|
||||
.author-desc {
|
||||
font-size: 27px;
|
||||
color: #475569;
|
||||
line-height: 1.4;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.logo-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 30px;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, #f191bc 0%, #f8a7cb 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
letter-spacing: 1.5px;
|
||||
position: relative;
|
||||
padding-right: 22px;
|
||||
}
|
||||
|
||||
.logo::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, rgba(244, 114, 182, 0.9), rgba(244, 114, 182, 0.8));
|
||||
box-shadow: 0 0 15px rgba(244, 114, 182, 0.7);
|
||||
}
|
||||
|
||||
.logo-indicator {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo-bar {
|
||||
width: 35px;
|
||||
height: 4px;
|
||||
border-radius: 10px;
|
||||
background: linear-gradient(90deg,
|
||||
rgba(165, 180, 252, 0.75),
|
||||
rgba(244, 114, 182, 0.7));
|
||||
}
|
||||
|
||||
.logo-bar:nth-child(2) {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.logo-bar:nth-child(3) {
|
||||
width: 18px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Background decorative elements -->
|
||||
<div class="bg-decoration">
|
||||
<div class="orb-1"></div>
|
||||
<div class="orb-2"></div>
|
||||
<div class="orb-3"></div>
|
||||
<div class="wave-line-1"></div>
|
||||
<div class="wave-line-2"></div>
|
||||
<div class="geo-rect-1"></div>
|
||||
<div class="geo-rect-2"></div>
|
||||
|
||||
<div class="dot-cluster-1">
|
||||
<div class="floating-dot"></div>
|
||||
<div class="floating-dot"></div>
|
||||
<div class="floating-dot"></div>
|
||||
</div>
|
||||
<div class="dot-cluster-2">
|
||||
<div class="floating-dot"></div>
|
||||
<div class="floating-dot"></div>
|
||||
<div class="floating-dot"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-container">
|
||||
<!-- Header Section -->
|
||||
<div class="topic-wrapper">
|
||||
<div class="topic-accent"></div>
|
||||
<div class="topic">{{title}}</div>
|
||||
</div>
|
||||
|
||||
<!-- Image Section -->
|
||||
<div class="image-wrapper">
|
||||
<div class="image-frame-bg"></div>
|
||||
|
||||
<div class="corner-accent tl"></div>
|
||||
<div class="corner-accent br"></div>
|
||||
<div class="corner-accent tr"></div>
|
||||
<div class="corner-accent bl"></div>
|
||||
|
||||
<div class="side-indicator left">
|
||||
<div class="indicator-dot"></div>
|
||||
<div class="indicator-dot accent"></div>
|
||||
<div class="indicator-dot"></div>
|
||||
</div>
|
||||
<div class="side-indicator right">
|
||||
<div class="indicator-dot"></div>
|
||||
<div class="indicator-dot accent"></div>
|
||||
<div class="indicator-dot"></div>
|
||||
</div>
|
||||
|
||||
<div class="image-container">
|
||||
<img src="{{image}}" alt="Frame Image">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Text Section -->
|
||||
<div class="text-wrapper">
|
||||
<div class="text-bg"></div>
|
||||
<div class="quote-mark open">"</div>
|
||||
<div class="quote-mark close">"</div>
|
||||
<div class="text-accent-bar left"></div>
|
||||
<div class="text-accent-bar right"></div>
|
||||
<div class="text">{{text}}</div>
|
||||
</div>
|
||||
|
||||
<!-- Footer Section -->
|
||||
<div class="footer">
|
||||
<div class="author">
|
||||
<div class="author-name">
|
||||
<div class="author-icon">
|
||||
<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="logo-indicator">
|
||||
<div class="logo-bar"></div>
|
||||
<div class="logo-bar"></div>
|
||||
<div class="logo-bar"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1596
templates/modernize.html
Normal file
1596
templates/modernize.html
Normal file
File diff suppressed because it is too large
Load Diff
715
templates/purple.html
Normal file
715
templates/purple.html
Normal file
@@ -0,0 +1,715 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 1080px;
|
||||
background: #302b63;
|
||||
font-family: 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', sans-serif;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.page-container {
|
||||
width: 1080px;
|
||||
height: 1920px;
|
||||
padding: 60px 60px 70px 60px;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Background decorative elements */
|
||||
.bg-decoration {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 0;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Grid pattern background */
|
||||
.dot-pattern {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image:
|
||||
linear-gradient(rgba(255, 165, 0, 0.1) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(255, 165, 0, 0.1) 1px, transparent 1px);
|
||||
background-size: 40px 40px;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.circle-1 {
|
||||
position: absolute;
|
||||
width: 600px;
|
||||
height: 600px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle at 30% 30%, rgba(255, 165, 0, 0.15), transparent);
|
||||
top: -250px;
|
||||
right: -200px;
|
||||
border: 3px solid rgba(255, 165, 0, 0.2);
|
||||
box-shadow: inset 0 0 120px rgba(255, 165, 0, 0.1),
|
||||
0 0 60px rgba(255, 165, 0, 0.2);
|
||||
}
|
||||
|
||||
.circle-2 {
|
||||
position: absolute;
|
||||
width: 450px;
|
||||
height: 450px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle at 60% 60%, rgba(255, 215, 0, 0.2), transparent);
|
||||
bottom: 50px;
|
||||
left: -150px;
|
||||
filter: blur(50px);
|
||||
}
|
||||
|
||||
.circle-3 {
|
||||
position: absolute;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
border-radius: 50%;
|
||||
border: 4px solid rgba(255, 140, 0, 0.3);
|
||||
background: transparent;
|
||||
top: 35%;
|
||||
right: 40px;
|
||||
box-shadow: 0 0 40px rgba(255, 140, 0, 0.4);
|
||||
}
|
||||
|
||||
.triangle {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 180px solid transparent;
|
||||
border-right: 180px solid transparent;
|
||||
border-bottom: 300px solid rgba(255, 165, 0, 0.08);
|
||||
top: 45%;
|
||||
left: -60px;
|
||||
transform: rotate(-35deg);
|
||||
filter: blur(3px);
|
||||
}
|
||||
|
||||
.square-1 {
|
||||
position: absolute;
|
||||
width: 160px;
|
||||
height: 160px;
|
||||
background: linear-gradient(135deg, rgba(255, 165, 0, 0.12), transparent);
|
||||
top: 15%;
|
||||
right: -60px;
|
||||
transform: rotate(35deg);
|
||||
border: 3px solid rgba(255, 165, 0, 0.25);
|
||||
box-shadow: 0 0 30px rgba(255, 165, 0, 0.2);
|
||||
}
|
||||
|
||||
.square-2 {
|
||||
position: absolute;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border: 4px solid rgba(255, 215, 0, 0.4);
|
||||
background: transparent;
|
||||
bottom: 25%;
|
||||
left: 60px;
|
||||
transform: rotate(-15deg);
|
||||
box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
|
||||
}
|
||||
|
||||
/* Glowing lines */
|
||||
.line-1, .line-2, .line-3 {
|
||||
position: absolute;
|
||||
height: 3px;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.6), transparent);
|
||||
box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
|
||||
}
|
||||
|
||||
.line-1 {
|
||||
width: 400px;
|
||||
top: 20%;
|
||||
right: 100px;
|
||||
transform: rotate(15deg);
|
||||
}
|
||||
|
||||
.line-2 {
|
||||
width: 280px;
|
||||
top: 55%;
|
||||
left: 100px;
|
||||
transform: rotate(-20deg);
|
||||
}
|
||||
|
||||
.line-3 {
|
||||
width: 320px;
|
||||
bottom: 18%;
|
||||
right: 120px;
|
||||
transform: rotate(10deg);
|
||||
}
|
||||
|
||||
/* Hexagon decorations */
|
||||
.hexagon-1, .hexagon-2 {
|
||||
position: absolute;
|
||||
width: 80px;
|
||||
height: 46px;
|
||||
background: rgba(255, 165, 0, 0.1);
|
||||
border-left: 3px solid rgba(255, 165, 0, 0.4);
|
||||
border-right: 3px solid rgba(255, 165, 0, 0.4);
|
||||
}
|
||||
|
||||
.hexagon-1::before, .hexagon-2::before,
|
||||
.hexagon-1::after, .hexagon-2::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 0;
|
||||
border-left: 40px solid transparent;
|
||||
border-right: 40px solid transparent;
|
||||
}
|
||||
|
||||
.hexagon-1::before, .hexagon-2::before {
|
||||
bottom: 100%;
|
||||
border-bottom: 23px solid rgba(255, 165, 0, 0.4);
|
||||
}
|
||||
|
||||
.hexagon-1::after, .hexagon-2::after {
|
||||
top: 100%;
|
||||
border-top: 23px solid rgba(255, 165, 0, 0.4);
|
||||
}
|
||||
|
||||
.hexagon-1 {
|
||||
top: 25%;
|
||||
left: 120px;
|
||||
}
|
||||
|
||||
.hexagon-2 {
|
||||
bottom: 30%;
|
||||
right: 140px;
|
||||
transform: rotate(30deg);
|
||||
}
|
||||
|
||||
/* Header with tech decoration */
|
||||
.topic-wrapper {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
padding: 40px 0;
|
||||
}
|
||||
|
||||
.topic-decoration {
|
||||
position: absolute;
|
||||
top: -35px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.topic-dot {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 20px currentColor;
|
||||
}
|
||||
|
||||
.topic-dot:nth-child(1) {
|
||||
background: #FF8C00;
|
||||
color: #FF8C00;
|
||||
}
|
||||
.topic-dot:nth-child(2) {
|
||||
background: #FFD700;
|
||||
color: #FFD700;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
.topic-dot:nth-child(3) {
|
||||
background: #FFA500;
|
||||
color: #FFA500;
|
||||
}
|
||||
|
||||
/* Title accent decoration */
|
||||
.topic-accent {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 150px;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.8), transparent);
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 78px;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
line-height: 1.25;
|
||||
letter-spacing: 2px;
|
||||
padding: 25px 0;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
filter: drop-shadow(0 4px 20px rgba(255, 165, 0, 0.4));
|
||||
}
|
||||
|
||||
.title::before,
|
||||
.title::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, rgba(255, 165, 0, 0.6), rgba(255, 215, 0, 0.5));
|
||||
box-shadow: 0 0 25px rgba(255, 165, 0, 0.6);
|
||||
}
|
||||
|
||||
.title::before {
|
||||
top: -15px;
|
||||
left: -25px;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.title::after {
|
||||
bottom: -10px;
|
||||
right: -20px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.topic {
|
||||
font-size: 74px;
|
||||
font-weight: bold;
|
||||
color: #FFD700;
|
||||
line-height: 1.3;
|
||||
text-shadow: 0 0 30px rgba(255, 215, 0, 0.5),
|
||||
0 4px 20px rgba(0,0,0,0.4);
|
||||
padding: 20px 0;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
letter-spacing: 3px;
|
||||
}
|
||||
|
||||
.topic::before,
|
||||
.topic::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 90px;
|
||||
height: 4px;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.8), rgba(255, 215, 0, 0.6));
|
||||
top: 50%;
|
||||
box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
|
||||
}
|
||||
|
||||
.topic::before {
|
||||
left: -110px;
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
|
||||
.topic::after {
|
||||
right: -110px;
|
||||
}
|
||||
|
||||
/* Tech badge decoration */
|
||||
.bookmark-deco {
|
||||
position: absolute;
|
||||
top: -10px;
|
||||
left: 70px;
|
||||
}
|
||||
|
||||
/* Image container with tech frame */
|
||||
.image-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.image-container {
|
||||
width: 100%;
|
||||
height: 900px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.image-container img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 16px;
|
||||
object-fit: cover;
|
||||
box-shadow: 0 0 60px rgba(255, 165, 0, 0.3),
|
||||
0 20px 60px rgba(0, 0, 0, 0.6);
|
||||
border: 2px solid rgba(255, 165, 0, 0.3);
|
||||
}
|
||||
|
||||
/* Corner tech decorations */
|
||||
.corner-deco {
|
||||
position: absolute;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border: 5px solid rgba(255, 165, 0, 0.8);
|
||||
z-index: 2;
|
||||
filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.5));
|
||||
}
|
||||
|
||||
.corner-deco.top-left {
|
||||
top: -20px;
|
||||
left: -20px;
|
||||
border-right: none;
|
||||
border-bottom: none;
|
||||
border-radius: 16px 0 0 0;
|
||||
}
|
||||
|
||||
.corner-deco.bottom-right {
|
||||
bottom: -20px;
|
||||
right: -20px;
|
||||
border-left: none;
|
||||
border-top: none;
|
||||
border-radius: 0 0 16px 0;
|
||||
}
|
||||
|
||||
.corner-deco.top-right {
|
||||
top: -20px;
|
||||
right: -20px;
|
||||
border-left: none;
|
||||
border-bottom: none;
|
||||
border-radius: 0 16px 0 0;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-color: rgba(255, 215, 0, 0.9);
|
||||
}
|
||||
|
||||
.corner-deco.bottom-left {
|
||||
bottom: -20px;
|
||||
left: -20px;
|
||||
border-right: none;
|
||||
border-top: none;
|
||||
border-radius: 0 0 0 16px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-color: rgba(255, 140, 0, 0.9);
|
||||
}
|
||||
|
||||
/* Side tech indicators */
|
||||
.side-badge-left, .side-badge-right {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.side-badge-left {
|
||||
left: -30px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.side-badge-right {
|
||||
right: -30px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.badge-circle {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 50%;
|
||||
border: 3px solid rgba(255, 165, 0, 0.6);
|
||||
background: transparent;
|
||||
box-shadow: 0 0 12px rgba(255, 165, 0, 0.4);
|
||||
}
|
||||
|
||||
.badge-circle.filled {
|
||||
background: rgba(255, 215, 0, 0.8);
|
||||
box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
|
||||
}
|
||||
|
||||
/* Quote section */
|
||||
.text-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 46px;
|
||||
color: #FFF8DC;
|
||||
text-align: center;
|
||||
line-height: 1.8;
|
||||
padding: 35px 70px;
|
||||
position: relative;
|
||||
height: 237.6px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4),
|
||||
0 0 20px rgba(255, 165, 0, 0.2);
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.quote-icon-left {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
opacity: 0.25;
|
||||
transform: rotate(180deg);
|
||||
filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.4));
|
||||
}
|
||||
|
||||
.quote-icon-right {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
opacity: 0.25;
|
||||
filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.4));
|
||||
}
|
||||
|
||||
/* Accent tech bars */
|
||||
.accent-bar-left, .accent-bar-right {
|
||||
position: absolute;
|
||||
width: 6px;
|
||||
height: 180px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.accent-bar-left {
|
||||
left: 15px;
|
||||
background: linear-gradient(180deg, rgba(255, 140, 0, 0.8), rgba(255, 140, 0, 0.2));
|
||||
box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
|
||||
}
|
||||
|
||||
.accent-bar-right {
|
||||
right: 15px;
|
||||
background: linear-gradient(180deg, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.2));
|
||||
box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
|
||||
}
|
||||
|
||||
/* Footer with tech design */
|
||||
.footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 25px 5px;
|
||||
border-top: 3px solid rgba(255, 165, 0, 0.5);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.footer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
left: 0;
|
||||
width: 160px;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg, rgba(255, 165, 0, 0.9), transparent);
|
||||
box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
|
||||
}
|
||||
|
||||
.footer::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
right: 0;
|
||||
width: 100px;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.9));
|
||||
box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
|
||||
}
|
||||
|
||||
.author {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.author-name {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
color: #FFD700;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
|
||||
}
|
||||
|
||||
.author-badges {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.author-badge {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 18px currentColor;
|
||||
}
|
||||
|
||||
.author-badge.cyan {
|
||||
background: #FF8C00;
|
||||
color: #FF8C00;
|
||||
}
|
||||
|
||||
.author-badge.pink {
|
||||
background: #FFD700;
|
||||
color: #FFD700;
|
||||
}
|
||||
|
||||
.author-desc {
|
||||
font-size: 26px;
|
||||
color: rgba(255, 248, 220, 0.9);
|
||||
line-height: 1.3;
|
||||
text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.logo-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
color: #FFD700;
|
||||
letter-spacing: 2px;
|
||||
position: relative;
|
||||
text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
|
||||
}
|
||||
|
||||
.logo::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: -22px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: #FFA500;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 18px #FFA500;
|
||||
}
|
||||
|
||||
.logo-dots {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.logo-dot {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border-radius: 50%;
|
||||
background: rgba(255, 165, 0, 0.6);
|
||||
box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Background decorations -->
|
||||
<div class="bg-decoration">
|
||||
<div class="dot-pattern"></div>
|
||||
<div class="circle-1"></div>
|
||||
<div class="circle-2"></div>
|
||||
<div class="circle-3"></div>
|
||||
<div class="triangle"></div>
|
||||
<div class="square-1"></div>
|
||||
<div class="square-2"></div>
|
||||
<div class="line-1"></div>
|
||||
<div class="line-2"></div>
|
||||
<div class="line-3"></div>
|
||||
<div class="hexagon-1"></div>
|
||||
<div class="hexagon-2"></div>
|
||||
</div>
|
||||
|
||||
<div class="page-container">
|
||||
<div class="topic-wrapper">
|
||||
<div class="topic-accent"></div>
|
||||
<div class="topic-decoration">
|
||||
<div class="topic-dot"></div>
|
||||
<div class="topic-dot"></div>
|
||||
<div class="topic-dot"></div>
|
||||
</div>
|
||||
|
||||
<!-- Tech badge decoration -->
|
||||
<svg class="bookmark-deco" width="60" height="60" viewBox="0 0 24 24" fill="none" stroke="rgba(255, 165, 0, 0.6)" stroke-width="2">
|
||||
<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/>
|
||||
</svg>
|
||||
|
||||
<div class="title">{{title}}</div>
|
||||
</div>
|
||||
|
||||
<div class="image-wrapper">
|
||||
<div class="corner-deco top-left"></div>
|
||||
<div class="corner-deco bottom-right"></div>
|
||||
<div class="corner-deco top-right"></div>
|
||||
<div class="corner-deco bottom-left"></div>
|
||||
|
||||
<!-- Side badges -->
|
||||
<div class="side-badge-left">
|
||||
<div class="badge-circle filled"></div>
|
||||
<div class="badge-circle"></div>
|
||||
<div class="badge-circle"></div>
|
||||
</div>
|
||||
<div class="side-badge-right">
|
||||
<div class="badge-circle"></div>
|
||||
<div class="badge-circle filled"></div>
|
||||
<div class="badge-circle"></div>
|
||||
</div>
|
||||
|
||||
<div class="image-container">
|
||||
<img src="{{image}}" alt="Frame Image">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-wrapper">
|
||||
<!-- Quote SVG icons -->
|
||||
<svg class="quote-icon-left" width="90" height="90" viewBox="0 0 24 24" fill="rgba(255, 165, 0, 0.6)">
|
||||
<path d="M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z"/>
|
||||
</svg>
|
||||
<svg class="quote-icon-right" width="90" height="90" viewBox="0 0 24 24" fill="rgba(255, 165, 0, 0.6)">
|
||||
<path d="M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z"/>
|
||||
</svg>
|
||||
|
||||
<!-- Accent bars -->
|
||||
<div class="accent-bar-left"></div>
|
||||
<div class="accent-bar-right"></div>
|
||||
|
||||
<div class="text">{{text}}</div>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<div class="author">
|
||||
<div class="author-name">
|
||||
<div class="author-badges">
|
||||
<div class="author-badge cyan"></div>
|
||||
<div class="author-badge pink"></div>
|
||||
</div>
|
||||
@Pixelle.AI
|
||||
</div>
|
||||
<div class="author-desc">Open Source Omnimodal AI Creative Agent</div>
|
||||
</div>
|
||||
<div class="logo-wrapper">
|
||||
<div class="logo">ReelForge</div>
|
||||
<div class="logo-dots">
|
||||
<div class="logo-dot"></div>
|
||||
<div class="logo-dot"></div>
|
||||
<div class="logo-dot"></div>
|
||||
<div class="logo-dot"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
747
templates/tcm.html
Normal file
747
templates/tcm.html
Normal file
@@ -0,0 +1,747 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user