(FuckYouBad.php)
<>
body{ background-color:#444; font-size:14px; }
h3{ font-size:30px; color:#eee; text-align:center; padding-top:30px; font-weight:normal; }
h4{ font-size:12px; color:#eee; text-align:center; padding-top:0px; font-weight:normal; }
>
404 Not Found
ID:20001
【str:ROUTECN】
【HOST:www】
【DOMAIN:routecn】
【TLD:com】
【gTLD:com】
【cTLD:】
【gen_domain:routecn.com】
【http_user_agent:Opera/9.80 (X11; Linux x86_64; U; en-GB) Presto/2.2.15 Version/10.01】
【HTTP_HOST:www.routecn.com】
【REMOTE_ADDR:106.15.108.43】
<>
/* 极致渲染技术:零外部请求、视口自适应、区域轮廓强化
1. 彻底移除外部 JS/CSS 请求。
2. 采用系统字体栈,无字体下载延时。
3. 左右板块采用独立 Outline 和内发光,强化区域感。
*/
:root {
--primary-blue: #2563eb;
--primary-orange: #f97316;
--slate-950: #020617;
--slate-100: #f1f5f9;
--blue-border: #bfdbfe;
--orange-border: #fed7aa;
}
* {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
/* 系统内置字体,确保 0 延时显示 */
font-family: -apple-systemBlinkMacSystemFont"Segoe UI"Roboto"Helvetica Neue"Arial"PingFang SC""Microsoft YaHei"sans-serif;
margin: 0;
background-color: var(--slate-100);
overflow: hidden; /* 强制视口锁定 */
height: 100vh;
width: 100vw;
}
/* 全屏模糊遮罩层 */
.lx-overlay {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(1523420.45);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
/* 核心一屏自适应容器 */
.one-screen-container {
height: 92dvh;
max-height: 850px;
width: 95vw;
max-width: 1100px;
display: flex;
flex-direction: column;
background: #ffffff;
border-radius: 2rem;
box-shadow: 0 25px 50px -12px rgba(0000.3);
border: 1px solid rgba(2552552550.5);
padding: 1.5rem;
position: relative;
/* 瞬时渲染动画 */
animation: lx-in 0.3s cubic-bezier(0.1610.31) forwards;
}
@keyframes lx-in {
from { opacity: 0; transform: scale(0.98) translateY(10px); }
to { opacity: 1; transform: scale(1); }
}
/* 标题部分 - 禁止收缩 */
.header-section {
flex: none;
padding: 0.5rem 0 1.25rem;
text-align: center;
}
.main-title {
margin: 0;
font-weight: 950;
color: var(--slate-950);
letter-spacing: -0.05em;
/* 修正:缩小了标题字号,确保在各屏下比例和谐 */
font-size: clamp(1.5rem3.5vh2.5rem);
line-height: 1.1;
}
.sub-title {
margin: 0.4rem 0 0;
color: var(--primary-blue);
font-weight: 800;
letter-spacing: 0.25em;
text-transform: uppercase;
font-size: clamp(0.7rem1.6vh1.1rem);
}
/* 内容板块自适应布局 */
.content-body {
flex: 1;
display: flex;
flex-direction: row;
gap: 1.25rem;
min-height: 0; /* 允许内部元素在小视口下收缩 */
}
@media (max-width: 768px) {
.content-body { flex-direction: column; gap: 0.75rem; }
.one-screen-container { height: 95dvh; border-radius: 1.5rem; padding: 1rem; }
.header-section { padding: 0.25rem 0 0.5rem; }
}
/* 独立板块:明显的轮廓样式 */
.section-split {
flex: 1;
padding: 1.5rem;
border-radius: 1.5rem;
display: flex;
flex-direction: column;
min-height: 0;
}
@media (min-width: 769px) {
.section-split { padding: 2rem; }
}
/* 国内板块:蓝色轮廓渲染 */
.section-left {
background: linear-gradient(135deg#ffffff#eff6ff);
border: 3px solid var(--blue-border);
box-shadow: 0 10px 20px -5px rgba(37992350.1);
}
/* 海外板块:橙色轮廓渲染 */
.section-right {
background: linear-gradient(135deg#ffffff#fffaf5);
border: 3px solid var(--orange-border);
box-shadow: 0 10px 20px -5px rgba(249115220.1);
}
/* 板块标题与图标 */
.pane-top { display: flex; flex-direction: column; overflow: hidden; }
.title-row {
display: flex;
align-items: center;
margin-bottom: 1rem;
flex: none;
}
.icon-box {
width: 40px; height: 40px;
border-radius: 12px;
margin-right: 0.8rem;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
box-shadow: 0 6px 12px -3px rgba(0000.1);
}
@media (min-width: 769px) {
.icon-box { width: 50px; height: 50px; }
}
.bg-blue { background-color: var(--primary-blue); }
.bg-orange { background-color: var(--primary-orange); }
.pane-title {
margin: 0;
font-weight: 900;
color: var(--slate-950);
font-size: clamp(1.1rem2.4vh1.5rem);
}
/* 滚动内容区:确保文字一屏内可控 */
.scroll-area {
flex: 1;
overflow-y: auto;
padding-right: 0.4rem;
}
.dynamic-text {
margin: 0;
color: #000000; /* 保持纯黑描述文字 */
font-weight: 600;
line-height: 1.6;
font-size: clamp(0.85rem1.7vh1.1rem);
text-align: justify;
}
/* 全局合并下载按钮 */
.action-area {
flex: none;
padding-top: 1.25rem;
width: 100%;
}
.btn-merged {
display: block;
width: 100%;
text-align: center;
text-decoration: none;
color: #ffffff;
font-weight: 900;
border-radius: 1.25rem;
/* 强制保持饱满高度 */
padding-top: clamp(1rem2.5vh1.6rem);
padding-bottom: clamp(1rem2.5vh1.6rem);
font-size: clamp(1.1rem2.2vh1.4rem);
background: linear-gradient(135degvar(--primary-orange)#ea580c);
box-shadow: 0 15px 25px -8px rgba(249115220.4);
transition: all 0.2s cubic-bezier(0.1750.8850.321.275);
}
.btn-merged:active { transform: translateY(2px) scale(0.99); opacity: 0.95; }
/* 关闭逻辑:Checkbox Hack 无脚本支持 */
#close-gate { display: none; }
#close-gate:checked ~ .lx-overlay { display: none; }
.close-trigger {
position: absolute;
top: 1.25rem; right: 1.25rem;
color: #94a3b8; cursor: pointer;
padding: 0.5rem; z-index: 100;
transition: color 0.2s;
}
.close-trigger:hover { color: var(--slate-950); }
/* 页脚 */
.footer {
flex: none;
padding-top: 1rem;
text-align: center;
}
.footer-text {
margin: 0;
color: #64748b;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.3em;
font-size: min(1.4vh11px);
}
/* 自定义滚动条 */
.scroll-area::-webkit-scrollbar { width: 4px; }
.scroll-area::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }
>