download.html 3.3 KB

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