126 lines
2.0 KiB
HTML
126 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html { background: #ffffff; }
|
|
body {
|
|
width: 720pt;
|
|
height: 405pt;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #6B2C3E;
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
}
|
|
|
|
.slide-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
/* Decorative circle */
|
|
.decorative-circle {
|
|
position: absolute;
|
|
top: -40pt;
|
|
right: 0pt;
|
|
width: 160pt;
|
|
height: 160pt;
|
|
border-radius: 50%;
|
|
background: #B8974F;
|
|
opacity: 0.15;
|
|
}
|
|
|
|
/* Watermark */
|
|
.watermark {
|
|
position: absolute;
|
|
bottom: 60pt;
|
|
left: 80pt;
|
|
font-size: 180pt;
|
|
color: #B8974F;
|
|
opacity: 0.08;
|
|
font-family: "SimSun", "STSong", serif;
|
|
line-height: 1;
|
|
}
|
|
|
|
.watermark p {
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1;
|
|
}
|
|
|
|
/* Main thank you text */
|
|
.thank-you {
|
|
position: absolute;
|
|
top: 120pt;
|
|
left: 80pt;
|
|
right: 80pt;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
.thank-you h1 {
|
|
font-family: Georgia, serif;
|
|
font-size: 48pt;
|
|
color: #F5F1E8;
|
|
margin: 0 0 20pt 0;
|
|
}
|
|
|
|
.thank-you h2 {
|
|
font-family: Georgia, serif;
|
|
font-size: 32pt;
|
|
color: #B8974F;
|
|
margin: 0;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
/* Divider */
|
|
.divider {
|
|
position: absolute;
|
|
top: 260pt;
|
|
left: 280pt;
|
|
right: 280pt;
|
|
height: 0;
|
|
border-top: 1pt solid #B8974F;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Footer info */
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 50pt;
|
|
left: 80pt;
|
|
right: 80pt;
|
|
text-align: center;
|
|
font-size: 13pt;
|
|
color: #F5F1E8;
|
|
z-index: 1;
|
|
}
|
|
|
|
.footer p {
|
|
margin: 0;
|
|
opacity: 0.9;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="slide-content">
|
|
<div class="decorative-circle"></div>
|
|
<div class="watermark">
|
|
<p>爱</p>
|
|
</div>
|
|
|
|
<div class="thank-you">
|
|
<h1>感谢您</h1>
|
|
<h2>我们一起,让每个孩子闪耀</h2>
|
|
</div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="footer">
|
|
<p>七(3)班 | 2025期中冲刺 | 班主任:[姓名]</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|