<!DOCTYPE html>
<html lang="zh">
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
    <title>解析失败</title>
</head>
<style>
    /* --- 您原有的正常代码，保持不变 --- */
    #player-shade {
        width: 100%;
        height: 100vh;
        position: fixed;
        opacity: 0;
        z-index: 10000;
        display: none;
    }
    #box {
        display: flex;
        width: 100%;
        height: 100vh;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    #text {
        font-size: 1.2rem;
        font-weight: bold;
        color: white;
    }
    #route-text{
        display: none;
        cursor: pointer;
        font-weight: bold;
        color: #31bafb;
        font-size: 20px;
        margin-top: 5px;
    }
    #route-name{
        display: none;
        color: white;
    }

    /* --- 以下是带有“强制验证”样式的代码 --- */

    #route-menu{
        /* 强制验证：添加一个非常明显的红色边框！ */
        border: 5px solid red !important;

        position: fixed;
        z-index: 11000;
        right:0;
        top: 0;
        width: 220px;
        height: 100vh;
        
        background-color: rgba(28, 28, 28, 0.85); 
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        transform: translateX(310px); 
        transition: transform .3s ease-in-out;
        
        overflow-y: auto;
        display: none;
        box-shadow: -4px 0 15px rgba(0,0,0,0.3);
        box-sizing: border-box;
        padding-top: 20px;
    }

    #route-menu::before {
        content: '选择线路';
        display: block;
        padding: 0 20px 15px 20px;
        font-size: 1.1rem;
        font-weight: bold;
        color: #ffffff;
        border-bottom: 1px solid #555;
    }

    .route-menu-item{
        width: 100%;
        padding: 12px 20px;
        box-sizing: border-box;
        text-align: left; /* 文字左对齐 */
        line-height: 1.4;
        color: #e0e0e0;
        border-bottom: 1px solid #444;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.2s ease;
    }

    .route-menu-item:hover{
        background-color: rgba(49, 186, 251, 0.8);
        color: #ffffff;
    }

    .route-menu-item:last-child {
        border-bottom: none;
    }
    
    .route-menu-item.active {
        background-color: #31bafb;
        color: #ffffff;
        font-weight: bold;
    }
</style>
<body style="background-color: black;margin: 0;padding: 0;">
<div id="player-shade"></div>
<div id="box">
    <div id="text">No static resource sitemap.xml.</div>
    <div id="route-text">点击选择线路</div>
    <div id="route-name"></div>
    <div id="route-menu"></div>
</div>
</body>
<script id="TempScript">
    let RouteUrls = "";
</script>
<script src="/extend/layui/layui.js"></script>
<script src="/public/js/fail.js"></script>
</html>