12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!doctype html>
- <html>
- <head>
- <style>
- .div {
- width: 100%;
- height: 100%;
- /* position: relative; */
- }
- /* body{
- background-color: #040404;
- } */
- .button {
- margin-left: 10%;
- position: absolute;
- bottom: 140px;
- left: 0;
- width: 80%;
- text-align: center;
- z-index: 999;
- height: 120px;
- font-size: 32px;
- line-height: 120px;
- letter-spacing: 5px;
- background-color: #eeda9e;
- border-radius: 5px;
- color: black;
- }
- img {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- margin: auto;
- /* height: 1334px; */
- }
- * {
- padding: 0;
- margin: 0;
- }
- </style>
- </head>
- <body>
- <div class="div">
- <img src="/static/img/downLoad.png"/>
- <a href="{$url}/app/ucoin.apk">
- <div class="button">Android版本下载</div>
- </a>
- </div>
- </body>
- </html>
|