| 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=1080, height=1920"> |
| 8 | <title>图书解读 - 1080x1920</title> |
| 9 | <!-- Google Fonts - 中文字体 --> |
| 10 | <link rel="preconnect" href="https://fonts.googleapis.com"> |
| 11 | <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 12 | <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=Dancing+Script:wght@400;700&family=Liu+Jian+Mao+Cao&family=ZCOOL+KuaiLe&display=swap" rel="stylesheet"> |
| 13 | <style> |
| 14 | |
| 15 | * { margin: 0; padding: 0; box-sizing: border-box; } |
| 16 | |
| 17 | html, body { width: 1080px; height: 1920px; overflow: hidden; } |
| 18 | |
| 19 | body { |
| 20 | font-family: 'Noto Sans SC', 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif; |
| 21 | color: #fff; |
| 22 | position: relative; |
| 23 | background: #1a1a1a; |
| 24 | } |
| 25 | |
| 26 | .media-bg { |
| 27 | position: absolute; |
| 28 | inset: 0; |
| 29 | z-index: 0; |
| 30 | overflow: hidden; |
| 31 | transform: translateY(-400px); |
| 32 | height: calc(100% + 400px); |
| 33 | } |
| 34 | |
| 35 | /* 顶部区域 */ |
| 36 | .top-section { |
| 37 | position: absolute; |
| 38 | top: 10%; |
| 39 | left: 50%; |
| 40 | transform: translateX(-50%); |
| 41 | text-align: center; |
| 42 | width: 90%; |
| 43 | z-index: 1; |
| 44 | } |
| 45 | |
| 46 | .image { |
| 47 | position: absolute; |
| 48 | top: 400px; |
| 49 | left: 50%; |
| 50 | transform: translate(-50%); |
| 51 | } |
| 52 | |
| 53 | .title { |
| 54 | font-size: 100px; |
| 55 | font-weight: 900; |
| 56 | line-height: 1.1; |
| 57 | font-family: 'Noto Sans SC', sans-serif; |
| 58 | color: #000; |
| 59 | text-shadow: -3px -3px 0 #fff, |
| 60 | 3px -3px 0 #fff, |
| 61 | -3px 3px 0 #fff, |
| 62 | 3px 3px 0 #fff; |
| 63 | letter-spacing: 2px; |
| 64 | margin-bottom: 20px; |
| 65 | } |
| 66 | |
| 67 | .subtitle { |
| 68 | font-size: 30px; |
| 69 | font-weight: 500; |
| 70 | font-family: 'Noto Sans SC', sans-serif; |
| 71 | color: #000; |
| 72 | text-shadow: -2px -2px 0 #fff, |
| 73 | 2px -2px 0 #fff, |
| 74 | -2px 2px 0 #fff, |
| 75 | 2px 2px 0 #fff; |
| 76 | letter-spacing: 2px; |
| 77 | } |
| 78 | |
| 79 | /* 底部文字区域 */ |
| 80 | .bottom-section { |
| 81 | position: absolute; |
| 82 | top: 1000px; |
| 83 | left: 50%; |
| 84 | transform: translateX(-50%); |
| 85 | text-align: center; |
| 86 | width: 90%; |
| 87 | z-index: 1; |
| 88 | } |
| 89 | |
| 90 | .main-text { |
| 91 | font-size: 50px; |
| 92 | font-weight: 700; |
| 93 | font-family: 'Noto Sans SC', sans-serif; |
| 94 | text-shadow: -2px -2px 0 #000, |
| 95 | 2px -2px 0 #000, |
| 96 | -2px 2px 0 #000, |
| 97 | 2px 2px 0 #000; |
| 98 | margin-bottom: 15px; |
| 99 | letter-spacing: 3px; |
| 100 | } |
| 101 | |
| 102 | .author { |
| 103 | font-size: 30px; |
| 104 | font-family: 'Liu Jian Mao Cao', 'ZCOOL KuaiLe', cursive; |
| 105 | text-shadow: -1px -1px 0 #000, |
| 106 | 1px -1px 0 #000, |
| 107 | -1px 1px 0 #000, |
| 108 | 1px 1px 0 #000; |
| 109 | } |
| 110 | </style> |
| 111 | </head> |
| 112 | <body> |
| 113 | <div class="media-bg">{{media}}</div> |
| 114 | |
| 115 | <!-- 顶部标题区 --> |
| 116 | <div class="top-section"> |
| 117 | <div class="title">{{title}}</div> |
| 118 | <div class="subtitle">{{subtitle=这是一个副标题}}</div> |
| 119 | </div> |
| 120 | |
| 121 | <!-- <img class="img" src="{{image}}" alt="内容图片"> --> |
| 122 | |
| 123 | <!-- 底部文字区 --> |
| 124 | <div class="bottom-section"> |
| 125 | <div class="main-text">{{text}}</div> |
| 126 | <div class="author">{{author=HITsz-TMG}}</div> |
| 127 | </div> |
| 128 | </body> |
| 129 | </html> |
| 130 |