123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"/>
- <title>江湖抢单宝</title>
- <script>
- document.documentElement.style.fontSize = (document.documentElement.clientWidth / 375) * 100 + "px";
- window.onresize = function () {
- document.documentElement.style.fontSize = (document.documentElement.clientWidth / 375) * 100 + "px";
- }
- </script>
- <style>
- *{
- padding: 0;margin: 0;
- }
- .bigImg{
- width: 100%;
- }
- .hint{
- display: flex;align-items: center;font-size: 0.14rem;justify-content: center;padding-bottom: 0.1rem;
- }
- .hint img{
- width: 0.2rem;height: 0.2rem;margin-right: 0.1rem;border-radius: 0.03rem;
- }
- </style>
- </head>
- <body>
- <img src="./img/home_gs.png" onclick="goDetail()" class="bigImg"/>
- <div class="hint"><img src="https://credit-loan.oss-cn-beijing.aliyuncs.com/Uploads/logo/60%403x.png"/>上饶市合一科技有限公司</div>
- </body>
- </html>
- <script>
- function goDetail () {
- window.location.href="./detail.html"
- }
- </script>
|