download.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  9. <meta name="viewport"
  10. content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,minimal-ui">
  11. <title>扫码下载</title>
  12. <style>
  13. html,
  14. body {
  15. margin: 0;
  16. padding: 0;
  17. width: 100%;
  18. height: 100%;
  19. }
  20. .bg {
  21. width: 100%;
  22. height: 100%;
  23. background: url('./background.png') no-repeat;
  24. background-size: 100% 100%;
  25. }
  26. .character {
  27. width: 80%;
  28. margin: 0 auto;
  29. padding-top: 50px;
  30. }
  31. .character img {
  32. width: 100%;
  33. }
  34. .logo {
  35. width: 80%;
  36. display: flex;
  37. margin: 30px auto 0 auto;
  38. justify-content: center;
  39. }
  40. .logo img {
  41. width: 50px;
  42. }
  43. .logo h1 {
  44. color: #FFF;
  45. margin: 0 0 0 20px;
  46. }
  47. .qrcode {
  48. width: 80%;
  49. margin: 20px auto 0 auto;
  50. display: flex;
  51. justify-content: space-between;
  52. }
  53. .qrcode div {
  54. width: 45%;
  55. }
  56. .qrcode img {
  57. width: 100%;
  58. }
  59. .qrcode p {
  60. height: 30px;
  61. line-height: 30px;
  62. text-align: center;
  63. background-color: #FFF;
  64. border-radius: 75px;
  65. }
  66. </style>
  67. </head>
  68. <body>
  69. <div class="bg">
  70. <div class="character"><img src="./character.png"></div>
  71. <div class="logo">
  72. <div><img src="./logo.png"></div>
  73. <div>
  74. <h1>灵犀办公</h1>
  75. </div>
  76. </div>
  77. <div class="qrcode">
  78. <div>
  79. <img src="./1574931362.png">
  80. <p>ios版本下载</p>
  81. </div>
  82. <div>
  83. <img src="./1574931362.png">
  84. <p>安卓版本下载</p>
  85. </div>
  86. </div>
  87. </div>
  88. </body>
  89. </html>