Administrator
4 hours ago b379a9a24654b436165f790652a2edaf5d37020a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>访问受限</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
 
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", "PingFang SC", sans-serif;
            background: #0a0e27;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c8d6e5;
        }
 
        .grid-bg {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image:
                linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
 
        .card {
            position: relative;
            text-align: center;
            padding: 60px 40px;
            max-width: 560px;
            width: 90%;
        }
 
        .shield-wrap {
            position: relative;
            width: 90px; height: 108px;
            margin: 0 auto 30px;
        }
 
        .shield-wrap svg {
            width: 100%; height: 100%;
        }
 
        .shield-ring {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%,-50%);
            width: 150px; height: 150px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(239,68,68,.15) 0%, transparent 70%);
            animation: ringPulse 2.5s ease-in-out infinite;
        }
 
        @keyframes ringPulse {
            0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .5; }
            50%     { transform: translate(-50%,-50%) scale(1.25); opacity: .15; }
        }
 
        h2 {
            font-size: 22px; font-weight: 600;
            color: #f1f5f9;
            margin-bottom: 14px;
            letter-spacing: .5px;
        }
 
        h2.en {
            color: #94a3b8;
            margin-bottom: 30px;
            font-weight: 400;
        }
 
        .divider {
            width: 60px; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(239,68,68,.4), transparent);
            margin: 0 auto 28px;
        }
 
        .badge {
            display: inline-flex;
            align-items: center; gap: 8px;
            padding: 10px 22px;
            background: rgba(239,68,68,.08);
            border: 1px solid rgba(239,68,68,.2);
            border-radius: 50px;
            font-size: 13px; color: #f87171;
            letter-spacing: 2px;
            font-weight: 500;
        }
 
        .badge .dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #ef4444;
            box-shadow: 0 0 8px rgba(239,68,68,.7);
            animation: blink 2s ease-in-out infinite;
        }
 
        @keyframes blink {
            0%,100% { opacity: 1; }
            50%     { opacity: .3; }
        }
    </style>
</head>
<body>
<div class="grid-bg"></div>
 
<div class="card">
    <!-- 盾牌图标 -->
    <div class="shield-wrap">
        <div class="shield-ring"></div>
        <svg viewBox="0 0 60 72" fill="none">
            <path d="M30 4 L54 16 L54 38 C54 52 42 62 30 68 C18 62 6 52 6 38 L6 16 Z"
                  stroke="#ef4444" stroke-width="2.2" stroke-linejoin="round"/>
            <path d="M22 36 L28 43 L40 30" stroke="#ef4444" stroke-width="2.8"
                  stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
    </div>
 
    <!-- 中文提示 -->
    <h2>因平台安全与合规要求,暂不支持中国大陆 IP 访问</h2>
 
    <!-- 英文提示 -->
    <h2 class="en">Access from Mainland China is currently unavailable.</h2>
 
    <div class="divider"></div>
 
    <!-- 底部标识 -->
    <div class="badge">
        <span class="dot"></span>
        防御平台
    </div>
</div>
</body>
</html>