<script>
        // 禁用右键菜单
        document.addEventListener("contextmenu", function (event) {
            event.preventDefault();
        });

        // 禁用 F12 和开发者工具快捷键
        document.addEventListener("keydown", function (event) {
            // 检测按键是否是 F12 (Key Code: 123)
            if (event.key === "F12" || event.keyCode === 123) {
                event.preventDefault();
                alert("开发者工具已被禁用！");
            }

            // 禁用 Ctrl + Shift + I (打开开发者工具)
            if (event.ctrlKey && event.shiftKey && event.key === "I") {
                event.preventDefault();
                alert("开发者工具已被禁用！");
            }

            // 禁用 Ctrl + Shift + J (打开控制台)
            if (event.ctrlKey && event.shiftKey && event.key === "J") {
                event.preventDefault();
                alert("开发者工具已被禁用！");
            }

            // 禁用 Ctrl + U (查看源码)
            if (event.ctrlKey && event.key === "u") {
                event.preventDefault();
                alert("查看源码功能已被禁用！");
            }
        });
    </script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//www.zotacn.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://www.zotacn.com/post-sitemap.xml</loc>
		<lastmod>2025-05-20T22:23:30+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.zotacn.com/page-sitemap.xml</loc>
		<lastmod>2025-06-16T01:33:59+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.zotacn.com/products-sitemap.xml</loc>
		<lastmod>2025-06-15T22:41:06+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.zotacn.com/category-sitemap.xml</loc>
		<lastmod>2025-05-20T22:23:30+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.zotacn.com/product-sitemap.xml</loc>
		<lastmod>2025-06-15T22:41:06+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.zotacn.com/author-sitemap.xml</loc>
		<lastmod>2024-12-11T06:44:49+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->