image_ultrawide_minimal.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="template:media-width" content="1024">
  6. <meta name="template:media-height" content="1024">
  7. <meta name="viewport" content="width=1920, height=1080">
  8. <title>视频模板 - 极简风格</title>
  9. <style>
  10. * {
  11. margin: 0;
  12. padding: 0;
  13. box-sizing: border-box;
  14. }
  15. html, body {
  16. width: 1920px;
  17. height: 1080px;
  18. overflow: hidden;
  19. }
  20. body {
  21. background: #ffffff;
  22. font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  23. display: grid;
  24. grid-template-columns: 1fr 1.4fr 1fr;
  25. gap: 60px;
  26. padding: 70px 80px;
  27. position: relative;
  28. color: #000000;
  29. }
  30. /* 背景装饰 */
  31. .bg-decoration {
  32. position: absolute;
  33. width: 100%;
  34. height: 100%;
  35. overflow: hidden;
  36. z-index: 1;
  37. }
  38. .minimal-line {
  39. position: absolute;
  40. background: linear-gradient(90deg, transparent, #000000, transparent);
  41. opacity: 0.03;
  42. }
  43. .line-1 {
  44. width: 600px;
  45. height: 1px;
  46. top: 25%;
  47. left: 150px;
  48. transform: rotate(-2deg);
  49. }
  50. .line-2 {
  51. width: 550px;
  52. height: 1px;
  53. bottom: 30%;
  54. right: 200px;
  55. transform: rotate(3deg);
  56. }
  57. .circle {
  58. position: absolute;
  59. border-radius: 50%;
  60. border: 1px solid #000000;
  61. opacity: 0.03;
  62. }
  63. .circle-1 {
  64. width: 400px;
  65. height: 400px;
  66. top: -200px;
  67. right: 300px;
  68. }
  69. .circle-2 {
  70. width: 350px;
  71. height: 350px;
  72. bottom: -150px;
  73. left: 400px;
  74. }
  75. /* 左侧标题区 */
  76. .left-section {
  77. position: relative;
  78. z-index: 2;
  79. display: flex;
  80. flex-direction: column;
  81. justify-content: center;
  82. }
  83. .title-accent {
  84. font-size: 14px;
  85. color: #000000;
  86. letter-spacing: 6px;
  87. margin-bottom: 25px;
  88. font-weight: 300;
  89. opacity: 0.4;
  90. text-transform: uppercase;
  91. }
  92. .main-title {
  93. font-size: 96px;
  94. font-weight: 300;
  95. line-height: 1.1;
  96. color: #000000;
  97. letter-spacing: -4px;
  98. margin-bottom: 40px;
  99. }
  100. .title-underline {
  101. width: 180px;
  102. height: 2px;
  103. background: #000000;
  104. }
  105. /* 中间图片区 */
  106. .center-section {
  107. position: relative;
  108. z-index: 2;
  109. display: flex;
  110. align-items: center;
  111. justify-content: center;
  112. }
  113. .image-container {
  114. width: 100%;
  115. height: 100%;
  116. border-radius: 8px;
  117. overflow: hidden;
  118. border: 1px solid rgba(0, 0, 0, 0.05);
  119. }
  120. .image-container img {
  121. width: 100%;
  122. height: 100%;
  123. object-fit: cover;
  124. }
  125. /* 右侧文字区 */
  126. .right-section {
  127. position: relative;
  128. z-index: 2;
  129. display: flex;
  130. flex-direction: column;
  131. justify-content: center;
  132. }
  133. .text-content {
  134. font-size: 48px;
  135. font-weight: 300;
  136. line-height: 1.8;
  137. color: #000000;
  138. text-align: left;
  139. letter-spacing: 1px;
  140. }
  141. .text-underline {
  142. margin-top: 40px;
  143. width: 140px;
  144. height: 2px;
  145. background: #000000;
  146. }
  147. </style>
  148. </head>
  149. <body>
  150. <div class="bg-decoration">
  151. <div class="minimal-line line-1"></div>
  152. <div class="minimal-line line-2"></div>
  153. <div class="circle circle-1"></div>
  154. <div class="circle circle-2"></div>
  155. </div>
  156. <!-- 左侧标题 -->
  157. <div class="left-section">
  158. <div class="title-accent">SIMPLE</div>
  159. <div class="main-title">{{title}}</div>
  160. <div class="title-underline"></div>
  161. </div>
  162. <!-- 中间图片 -->
  163. <div class="center-section">
  164. <div class="image-container">
  165. <img src="{{image}}" alt="内容图片">
  166. </div>
  167. </div>
  168. <!-- 右侧文字 -->
  169. <div class="right-section">
  170. <div class="text-content">{{text}}</div>
  171. <div class="text-underline"></div>
  172. </div>
  173. </body>
  174. </html>