| 12345678910111213141516171819202122232425262728293031323334 | <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>请使用手机浏览器打开</title>    <style>        *{            padding: 0;            margin: 0;        }        .page{            width: 100vw;            height: 100vh;            background: rgba(0,0,0,.6);            position: relative;        }        .page .img{            position: absolute;            top: 10px;            right: 30px;            width: 300px;            height: 300px;            z-index: 10;        }            </style></head><body>    <div class="page">        <img src="/assets/img/tips.png" class="img">    </div></body></html>
 |