1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <style>
- .back-up a{
- text-decoration: none;
- }
- </style>
- </head>
- <body>
- <section>
- <div class="container">
- <div class="row pt-2 pt-xl-3">
- <a class="back-up" href="javascript:window.history.go(-1);"
- style="text-decoration: none;color: rgb(137, 137, 137);"><
- 点击返回列表</a>
- </div>
- </div>
- </section>
- </body>
- </html>
|