<!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
        <title>必应每日壁纸 · 全屏</title>
        <style>
            * { margin: 0; padding: 0; box-sizing: border-box; }
            body, html { width: 100%; height: 100%; overflow: hidden; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
            .wallpaper-container {
                position: relative;
                width: 100vw;
                height: 100vh;
                background: #000;
            }
            .wallpaper-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
            .info-panel {
                position: absolute;
                bottom: 30px;
                left: 30px;
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(8px);
                color: white;
                padding: 18px 28px;
                border-radius: 60px;
                max-width: 60%;
                border: 1px solid rgba(255,255,255,0.2);
                box-shadow: 0 10px 25px rgba(0,0,0,0.3);
                line-height: 1.5;
                pointer-events: none;
            }
            .info-panel .title {
                font-size: 1.4rem;
                font-weight: 500;
                margin-bottom: 6px;
                text-shadow: 0 2px 5px black;
            }
            .info-panel .copyright {
                font-size: 0.9rem;
                opacity: 0.9;
                text-shadow: 0 1px 3px black;
            }
            .nav-panel {
                position: absolute;
                bottom: 30px;
                right: 30px;
                display: flex;
                gap: 15px;
                pointer-events: auto;
            }
            .nav-btn {
                background: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(8px);
                border: 1px solid rgba(255,255,255,0.3);
                color: white;
                padding: 14px 28px;
                border-radius: 50px;
                font-size: 1.1rem;
                font-weight: 500;
                text-decoration: none;
                transition: background 0.2s, transform 0.2s;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
                cursor: pointer;
            }
            .nav-btn:hover {
                background: rgba(30, 30, 30, 0.8);
                transform: scale(1.05);
            }
            @media (max-width: 700px) {
                .info-panel {
                    left: 15px;
                    bottom: 20px;
                    padding: 12px 20px;
                    max-width: 70%;
                }
                .info-panel .title { font-size: 1.1rem; }
                .info-panel .copyright { font-size: 0.75rem; }
                .nav-panel {
                    bottom: 20px;
                    right: 15px;
                    gap: 10px;
                }
                .nav-btn {
                    padding: 10px 18px;
                    font-size: 0.9rem;
                }
            }
            @media (max-width: 480px) {
                .info-panel { max-width: 85%; }
                .nav-panel { flex-direction: column; gap: 8px; }
            }
        </style>
    </head>
    <body>
        <div class="wallpaper-container">
            <img class="wallpaper-img" src="" alt="必应壁纸">
            
            <div class="info-panel">
                <div class="title">暂无壁纸</div>
                <div class="copyright">请稍后刷新</div>
            </div>
            
            <div class="nav-panel">
                                    <span class="nav-btn" style="opacity:0.4; pointer-events:none;">⬅ 上一张</span>
                                <a href="?url=https%3A%2F%2Fweb.daaee.cn%2Fapi%2Fbw.php%3Faction%3Dlist" class="nav-btn">📋 壁纸列表</a>
            </div>
        </div>
    </body>
    </html>