| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>{{title}}</title>
- <style>
- :root {
- color-scheme: light dark;
- }
- body {
- margin: 0;
- padding: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
- background: #f5f7fb;
- color: #1f2d3d;
- display: flex;
- min-height: 100vh;
- align-items: center;
- justify-content: center;
- }
- .card {
- background: #fff;
- border-radius: 16px;
- box-shadow: 0 12px 30px rgba(45, 79, 120, 0.15);
- padding: 48px 40px;
- text-align: center;
- max-width: 360px;
- width: 90%;
- }
- .icon {
- width: 72px;
- height: 72px;
- margin: 0 auto 24px;
- border-radius: 50%;
- background: linear-gradient(120deg, #3ec5ff, #2da39d);
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- font-size: 36px;
- }
- h1 {
- margin: 0 0 12px;
- font-size: 24px;
- }
- p {
- margin: 0;
- line-height: 1.6;
- color: #6b7c93;
- }
- </style>
- </head>
- <body>
- <div class="card">
- <div class="icon">✔</div>
- <h1>{{heading}}</h1>
- <p>{{message}}</p>
- </div>
- </body>
- </html>
|