<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="utf-8"/>
    <meta http-equiv="refresh" content="10;url=/" />
<style>
        /* 通用样式 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body, html {
            height: 100%;
            font-family: 'Arial', sans-serif;
            background-image: url('/carl/img/bg.jpg');
            background-size: cover;  /* 背景图片覆盖整个页面 */
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
        }

        /* 容器样式 */
        .col01 {
            width: 100%;
            max-width: 600px;
            padding: 30px;
            background: rgba(0, 0, 0, 0.6);  /* 半透明黑色背景 */
            border-radius: 10px;  /* 圆角 */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);  /* 阴影 */
        }

        .tips404 h1 {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .tips404 h1 span {
            display: block;
            font-size: 16px;
            margin-top: 5px;
            color: #ccc;
        }

        .tips404 ul {
            list-style-type: none;
            margin-top: 20px;
            font-size: 16px;
            color: #ddd;
        }

        .tips404 ul li {
            margin-bottom: 10px;
        }

        /* 链接样式 */
        .cGray a {
            color: #ff6347;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .cGray a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* 按钮样式 */
        .tips404 h3 {
            margin-top: 30px;
        }

        .tips404 h3 a {
            background-color: #ff6347;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 18px;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .tips404 h3 a:hover {
            background-color: #ba2636;
        }

        /* 响应式 */
        @media (max-width: 600px) {
            .tips404 h1 {
                font-size: 24px;
            }

            .tips404 ul li {
                font-size: 14px;
            }

            .tips404 h3 a {
                font-size: 16px;
                padding: 8px 15px;
            }
        }
    </style>
</head>
<body>
    <div class="col01 clearfix">
        <div class="tips404">
            <h1>抱歉，您访问的页面被外星人劫持了<br>
                <span>Sorry, we cannot find the page you requested.</span>
            </h1>
            <ul>
                <li>输入的网址不正确</li>
                <li>页面已被删除</li>
            </ul>
            <h3 class="cGray">
                <a href="/" title="返回首页">返回首页</a>&nbsp;&nbsp;<a href="https://www.hongyun888.vip/" target="_blank" rel="nofollow" title="&#x674F;&#x5F69;&#x4FE1;&#x8A89;&#x62C5;&#x4FDD;&#x5E73;&#x53F0;">&#x674F;&#x5F69;&#x4FE1;&#x8A89;&#x62C5;&#x4FDD;&#x5E73;&#x53F0;</a>
            </h3>
        </div>
    </div>
</body>
</html>
