index.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <meta name="apple-mobile-web-app-capable" content="yes">
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  10. <meta name="apple-touch-fullscreen" content="yes"/>
  11. <meta name="format-detection" content="telephone=no">
  12. <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
  13. <meta name="Keywords" content="听邦">
  14. <meta name="Description" content="听邦">
  15. <title>听邦APP下载</title>
  16. <style>
  17. * {
  18. margin: 0;
  19. padding: 0;
  20. border: 0;
  21. box-sizing: border-box;
  22. font-family: PingFangSC-Regular, HYQiHei-FES, "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
  23. line-height: 1.42857143;
  24. font-weight: 400;
  25. -webkit-tap-highlight-color: transparent;
  26. -webkit-text-size-adjust: 100%;
  27. }
  28. html,
  29. body {
  30. width: 100%;
  31. min-height: 100%;
  32. }
  33. html {
  34. -webkit-text-size-adjust: 100%
  35. }
  36. body {
  37. display: flex;
  38. flex-direction: column;
  39. padding-top: 68px;
  40. align-items: center;
  41. background: url('./imgs/bg@2x.png') center top/100% 100% no-repeat;
  42. }
  43. a {
  44. text-decoration: none;
  45. -webkit-touch-callout: none;
  46. }
  47. .flex-col {
  48. display: flex;
  49. flex-direction: column;
  50. }
  51. .section {
  52. width: 266px;
  53. }
  54. .logo {
  55. display: block;
  56. width: 121px;
  57. height: 138px;
  58. margin: 0 auto;
  59. }
  60. .title {
  61. color: rgba(255, 255, 255, 1);
  62. font-size: 16px;
  63. line-height: 22px;
  64. }
  65. .main {
  66. display: flex;
  67. align-items: center;
  68. width: 266px;
  69. height: 44px;
  70. padding-left: 90px;
  71. margin-top: 10px;
  72. border-radius: 22px;
  73. background-color: rgba(211, 35, 35, 1);
  74. }
  75. .main .word {
  76. margin-left: 3px;
  77. color: rgba(255, 255, 255, 1);
  78. font-size: 16px;
  79. letter-spacing: 1px;
  80. line-height: 22px;
  81. }
  82. .ios {
  83. width: 32px;
  84. height: 32px;
  85. background: url('./imgs/icon_ios@2x.png') center center/100% 100% no-repeat;
  86. }
  87. .android {
  88. width: 23px;
  89. height: 27px;
  90. background: url('./imgs/icon_android@2x.png') center center/100% 100% no-repeat;
  91. }
  92. .help {
  93. color: rgba(255, 255, 255, 1);
  94. font-size: 12px;
  95. line-height: 17px;
  96. margin-top: 5px;
  97. }
  98. .margin-top-53 {
  99. margin-top: 53px;
  100. }
  101. .margin-top-73 {
  102. margin-top: 74px;
  103. }
  104. </style>
  105. </head>
  106. <body>
  107. <div class="section flex-col">
  108. <img class="logo"
  109. referrerpolicy="no-referrer"
  110. src="./imgs/logo@2x.png"
  111. alt="">
  112. <span class="title margin-top-73">IOS版下载</span>
  113. <a class="main" href="javascript:;">
  114. <span class="ios"></span>
  115. <span class="word">ios版</span>
  116. </a>
  117. <span class="help">请允许安装描述文件</span>
  118. <span class="title margin-top-53">安卓版下载</span>
  119. <a class="main" href="javascript:;">
  120. <span class="android"></span>
  121. <span class="word">Android版</span>
  122. </a>
  123. </div>
  124. </body>
  125. </html>