/* ========== 备案信息 ========== */

        .beian-info {
            
            position: fixed; /* 固定在页面底部 */
            bottom: 3px; /* 距离底部10px（可调整，若有footer则设为110px避开footer高度） */
            left: 50%; /* 水平居中 */
            transform: translateX(-50%); /* 精准居中 */
            font-size: 10px; /* 字号 */
            color: #666; /* 浅灰色，符合备案样式规范 */
            text-align: center;
            line-height: 1; /* 行高适配 */
            font-family: "Microsoft Yahei", sans-serif; /* 统一字体，避免字号渲染差异 */
            z-index: 1000; /* 确保在最上层，不被遮挡 */
        }
        .beian-info p {
            font-size: inherit !important; /* 继承.beian-info的6px，覆盖全局24px */
            margin: 0 !important; /* 清除p标签默认上下边距，避免排版乱 */
            line-height: 1 !important; /* 行高适配小字号 */
        }
        .beian-info img {
            vertical-align: middle; /* 图片与文字垂直居中对齐 */
            margin-right: 2px !important; /* 图片与文字间距 */
            width: 15px !important; /* 保持图片尺寸 */
            height: auto !important; /* 防止拉伸 */
        }
        .beian-info a {
            color: #666; /* 文字颜色统一 */
            text-decoration: none; /* 去掉下划线 */
            text-decoration: none; 
        }
        .beian-info a:hover {
            text-decoration: underline; /* hover时加下划线，提示可点击 */
            color: #333;/* hover加深颜色，提升可读性 */
        }

        /* 若页面有固定footer（高度100px），调整bottom值避开footer */
        /* .beian-info { bottom: 110px; } */