down.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <style>
  5. .div {
  6. width: 100%;
  7. height: 100%;
  8. /* position: relative; */
  9. }
  10. /* body{
  11. background-color: #040404;
  12. } */
  13. .button {
  14. margin-left: 10%;
  15. position: absolute;
  16. bottom: 140px;
  17. left: 0;
  18. width: 80%;
  19. text-align: center;
  20. z-index: 999;
  21. height: 120px;
  22. font-size: 32px;
  23. line-height: 120px;
  24. letter-spacing: 5px;
  25. background-color: #eeda9e;
  26. border-radius: 5px;
  27. color: black;
  28. }
  29. img {
  30. position: absolute;
  31. top: 0;
  32. left: 0;
  33. right: 0;
  34. bottom: 0;
  35. width: 100%;
  36. height: 100%;
  37. margin: auto;
  38. /* height: 1334px; */
  39. }
  40. * {
  41. padding: 0;
  42. margin: 0;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <div class="div">
  48. <img src="/static/img/downLoad.png"/>
  49. <a href="{$url}/app/ucoin.apk">
  50. <div class="button">Android版本下载</div>
  51. </a>
  52. </div>
  53. </body>
  54. </html>