123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="renderer" content="webkit">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="viewport"
- content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,minimal-ui">
- <title>扫码下载</title>
- <style>
- html,
- body {
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- }
- .bg {
- width: 100%;
- height: 100%;
- background: url('./background.png') no-repeat;
- background-size: 100% 100%;
- }
- .character {
- width: 80%;
- margin: 0 auto;
- padding-top: 50px;
- }
- .character img {
- width: 100%;
- }
- .logo {
- width: 80%;
- display: flex;
- margin: 30px auto 0 auto;
- justify-content: center;
- }
- .logo img {
- width: 50px;
- }
- .logo h1 {
- color: #FFF;
- margin: 0 0 0 20px;
- }
- .qrcode {
- width: 80%;
- margin: 20px auto 0 auto;
- display: flex;
- justify-content: space-between;
- }
- .qrcode div {
- width: 45%;
- }
- .qrcode img {
- width: 100%;
- }
- .qrcode p {
- height: 30px;
- line-height: 30px;
- text-align: center;
- background-color: #FFF;
- border-radius: 75px;
- }
- </style>
- </head>
- <body>
- <div class="bg">
- <div class="character"><img src="./character.png"></div>
- <div class="logo">
- <div><img src="./logo.png"></div>
- <div>
- <h1>灵犀办公</h1>
- </div>
- </div>
- <div class="qrcode">
- <div>
- <img src="./1574931362.png">
- <p>ios版本下载</p>
- </div>
- <div>
- <img src="./1574931362.png">
- <p>安卓版本下载</p>
- </div>
- </div>
- </div>
- </body>
- </html>
|