download.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. body{
  11. padding: 15vw;
  12. padding-top: 20vw;
  13. padding-bottom: 0;
  14. }
  15. .logo{
  16. margin-bottom: 10vw;
  17. }
  18. .logo img{
  19. width: 100%;
  20. }
  21. .btn{
  22. display: block;
  23. width: 60%;
  24. height: 44px;
  25. line-height: 44px;
  26. background-color: transparent;
  27. margin: 0 auto;
  28. margin-bottom: 20px;
  29. text-decoration: none;
  30. color: #148D8F;
  31. border-radius: 22px;
  32. text-align: center;
  33. font-size: 16px;
  34. overflow: hidden;
  35. border: 1px solid #148D8F;
  36. }
  37. .btn:hover{
  38. text-decoration: none;
  39. color: #fff;
  40. }
  41. .btn img{
  42. display: inline-block;
  43. vertical-align: middle;
  44. width: 20px;
  45. height: 20px;
  46. margin-bottom: 4px;
  47. }
  48. .top-div{
  49. position: fixed;
  50. z-index: 1000;
  51. top: 0;
  52. left: 0;
  53. width: 100vw;
  54. height: 100vh;
  55. padding: 5vw 3vw;
  56. background: rgba(0,0,0,0.7);
  57. }
  58. .top-div img{
  59. width: 94vw;
  60. }
  61. .bg{
  62. position: fixed;
  63. z-index: 1;
  64. top: 0;
  65. bottom: 0;
  66. left: 0;
  67. right: 0;
  68. overflow: hidden;
  69. }
  70. .bg img{
  71. width: 100%;
  72. height: auto;
  73. }
  74. .appbtn{
  75. background-color: transparent;
  76. position: fixed;
  77. z-index: 100;
  78. top: 45%;
  79. left: 0;
  80. width: 100%;
  81. height: 20%;
  82. }
  83. .tu{
  84. margin-top: -35px;
  85. }
  86. .tu img{
  87. width: 100%;
  88. display: inline-block;
  89. }
  90. .zi{
  91. width: 150px;
  92. margin: auto;
  93. margin-top: 210px !important;
  94. }
  95. .zi img{
  96. width: 100%;
  97. height: 100%;
  98. display: inline-block;
  99. }
  100. </style>
  101. </head>
  102. <body>
  103. <div class="tu">
  104. <img src="/static/mobile/img/tu.png" alt="">
  105. </div>
  106. <div class="appbtn">
  107. <a href="{$android}" class="btn">
  108. <img src="/static/mobile/img/icon-az.png" alt="">
  109. &nbsp;安卓系统下载
  110. </a>
  111. <a href="{$ios}" class="btn">
  112. <img src="/static/mobile/img/icon-ios.png" alt="">
  113. &nbsp;苹果系统下载
  114. </a>
  115. </div>
  116. <div class="zi">
  117. <img src="/static/mobile/img/zi.png" alt="">
  118. </div>
  119. {if condition="$iswx eq 1"}
  120. <div class="top-div">
  121. <img src="/static/mobile/img/tixing@3x.png" alt="">
  122. </div>
  123. {/if}
  124. </body>
  125. </html>