12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Document</title>
- <link rel="stylesheet" href="../common/reset.css">
- <style>
- * {
- font-family: 'PingFang SC','Microsoft YaHei',SourceHanSansCN-Normal,HiraginoSansGB,HiraginoSans-W3,"Helvetica Neue",Helvetica,STHeiTi,sans-serif;
- }
- .main {
- width: 100%;
- min-height: 100vh;
- }
- body {
- min-height: 100vh;
- position: relative;
- }
- .upload {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- width: 70%;
- }
- .list {
- width: 100%;
- text-align: center;
- position: absolute;
- top: 23%;
- left: 0;
- }
- a {
- display: inline-block;
- width: 190px;
- height: 74px;
- }
- .andriod {
- background-image: url("./img/andriod.png");
- background-size: 100% 100%;
- }
- .ios {
- background-image: url("./img/ios@2x.png");
- background-size: 100% 100%;
- }
- </style>
- </head>
- <body>
- <img src="./img/back1.png" alt="" class="main">
- <div class="list">
- <a class="andriod" href="https://imtt.dd.qq.com/16891/2E9050EA20F7A463D22A12CF142311CE.apk.1?fsname=com.smileflowpig.money_1.3.1_6.apk.1&csr=4c6f"></a>
- <a class="ios" href="https://itunes.apple.com/cn/app/%E5%B0%8F%E8%8A%B1%E7%8C%AA-%E5%88%86%E6%9C%9F%E6%97%A0%E5%BF%A7-%E9%80%89%E6%8B%A9%E5%A4%9A%E6%A0%B7/id1440274732?mt=8"></a>
- </div>
- <img src="./img/2@2x.png" alt="" class="upload">
- </body>
- </html>
|