download.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="Shortcut Icon" href="/logo.png" type="image/x-icon" />
  8. <title>{:get_config('web_site_title')}</title>
  9. <style>
  10. html{
  11. width: 100%;
  12. height: 100%;
  13. /*background-image: url("/static/mobile/img/bg.png");*/
  14. /*background-repeat: no-repeat;*/
  15. /*background-size: 100% 100%;*/
  16. }
  17. body{
  18. width: 100%;
  19. height: 100%;
  20. overflow: hidden;
  21. /*padding: 15vw;*/
  22. /*padding-top: 20vw;*/
  23. /*padding-bottom: 0;*/
  24. }
  25. .logo{
  26. margin-bottom: 10vw;
  27. }
  28. .logo img{
  29. width: 100%;
  30. }
  31. .btn{
  32. display: block;
  33. width: 60%;
  34. height: 44px;
  35. line-height: 44px;
  36. background-color: transparent;
  37. margin: 0 auto;
  38. margin-bottom: 20px;
  39. text-decoration: none;
  40. color: #fff ;
  41. border-radius: 22px;
  42. text-align: center;
  43. font-size: 16px;
  44. overflow: hidden;
  45. border: 1px solid #fff ;
  46. }
  47. .btn:hover{
  48. text-decoration: none;
  49. color: #fff;
  50. }
  51. .btn img{
  52. display: inline-block;
  53. vertical-align: middle;
  54. width: 20px;
  55. height: 20px;
  56. margin-bottom: 4px;
  57. }
  58. .top-div{
  59. position: fixed;
  60. z-index: 1000;
  61. top: 0;
  62. left: 0;
  63. width: 100vw;
  64. height: 100vh;
  65. padding: 5vw 3vw;
  66. background: rgba(0,0,0,0.7);
  67. }
  68. .top-div img{
  69. width: 94vw;
  70. }
  71. .bg{
  72. position: fixed;
  73. z-index: 1;
  74. top: 0;
  75. bottom: 0;
  76. left: 0;
  77. right: 0;
  78. overflow: hidden;
  79. }
  80. .bg img{
  81. width: 100%;
  82. height: auto;
  83. }
  84. .appbtn{
  85. background-color: transparent;
  86. position: fixed;
  87. z-index: 100;
  88. top: 35%;
  89. left: 0;
  90. width: 100%;
  91. height: 20%;
  92. }
  93. .tu{
  94. /*margin-top: -35px;*/
  95. width: 60%;
  96. margin: 0 auto;
  97. padding-top: 20px;
  98. }
  99. .tu img{
  100. width: 100%;
  101. /*width: 157px;*/
  102. /*height: 74px;*/
  103. display: inline-block;
  104. }
  105. .zi{
  106. width: 150px;
  107. margin: auto;
  108. margin-top: 210px !important;
  109. }
  110. .zi img{
  111. width: 100%;
  112. height: 100%;
  113. display: inline-block;
  114. }
  115. .bottom-logo{
  116. width: 100%;
  117. height: 25vw;
  118. /*display: table-cell;*/
  119. /*vertical-align: middle;*/
  120. text-align: center;
  121. padding-top: 121vw;
  122. /*overflow: hidden;*/
  123. }
  124. .bottom-logo img{
  125. width: 150px;
  126. height: 150px;
  127. margin: 0 auto;
  128. position: relative;
  129. }
  130. .bg-img{
  131. width: 100%;
  132. height: auto;
  133. position: absolute;
  134. left: 0;
  135. top: 0;
  136. right: 0;
  137. }
  138. </style>
  139. </head>
  140. <body>
  141. <!--<div class="tu">-->
  142. <!-- <img src="/static/mobile/img/tu.png" alt="">-->
  143. <!--</div>-->
  144. <img width="100%" src="/static/mobile/img/bg2x.png" alt="" class="bg-img">
  145. <div class="bottom-logo">
  146. <img src="/static/mobile/img/bottom-logo2x.png" alt="">
  147. </div>
  148. <div class="appbtn">
  149. <a href="{$android}" class="btn">
  150. <img src="/static/mobile/img/icon-az1.png" alt="">
  151. &nbsp;安卓系统下载
  152. </a>
  153. <a href="{$ios}" class="btn">
  154. <img src="/static/mobile/img/icon-ios1.png" alt="">
  155. &nbsp;苹果系统下载
  156. </a>
  157. </div>
  158. <!--<div class="zi">-->
  159. <!-- <img src="/static/mobile/img/zi.png" alt="">-->
  160. <!--</div>-->
  161. {if condition="$iswx eq 1"}
  162. <div class="top-div">
  163. <img src="/static/mobile/img/tixing@3x.png" alt="">
  164. </div>
  165. {/if}
  166. </body>
  167. </html>