rddp-share.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. html,body{
  10. margin: 0;
  11. padding: 0;
  12. }
  13. div{
  14. box-sizing: border-box;
  15. }
  16. .box{
  17. width: 1000px;
  18. height: 800px;
  19. background-color: #ccc;
  20. background-image: url('https://hzstatic.hzinsights.com/static/icon/hzyb/rddp-share-bg.png');
  21. background-repeat: no-repeat;
  22. background-size: cover;
  23. display: table-cell;
  24. vertical-align: middle;
  25. }
  26. .text{
  27. color: #fff;
  28. font-size: 80px;
  29. line-height: 1.5;
  30. text-align: center;
  31. padding: 0 100px;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="box">
  37. <div class="text">{{TITLE}}</div>
  38. </div>
  39. </body>
  40. </html>