<?xml version="1.0" encoding="UTF-8"?>
<!-- sitemap.xml 文件（网站页面索引，帮助爬虫高效抓取） -->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- 1. 网站首页（必加，优先级最高） -->
  <url>
    <loc>https://stocks.11yuan.net//</loc> <!-- 首页链接 -->
    <lastmod>2024-05-20</lastmod>    <!-- 页面最后更新时间（格式：YYYY-MM-DD） -->
    <changefreq>daily</changefreq>   <!-- 页面更新频率：always(实时)/hourly(每小时)/daily(每天)/weekly(每周)/monthly(每月)/yearly(每年)/never(从不) -->
    <priority>1.0</priority>         <!-- 优先级（0.0-1.0，首页建议设1.0，其他页面按重要性递减） -->
  </url>

  <!-- 2. 网站内其他重要页面（示例：关于我们页） -->
  <url>
    <loc>https://stocks.11yuan.net/#hexingongneng</loc> <!-- 页面实际链接（如 /about.html 或 /about） -->
    <lastmod>2024-05-15</lastmod>        <!-- 该页面的最后更新时间 -->
    <changefreq>monthly</changefreq>      <!-- 关于页更新少，设为 monthly -->
    <priority>0.8</priority>              <!-- 优先级低于首页，设0.8 -->
  </url>

  <!-- 3. 示例：文章/列表页（如果有动态页面，按此格式重复添加） -->
  <!--<url> -->
  <!--  <loc>https://你的网站域名/article/xxx</loc> --> <!-- 具体文章链接 -->
  <!--  <lastmod>2024-05-18</lastmod>    -->           <!-- 文章发布/更新时间 -->
  <!--  <changefreq>weekly</changefreq>    -->         <!-- 文章更新频率（如每周更新） -->
  <!--  <priority>0.7</priority>     -->               <!-- 优先级设0.7 -->
  <!--</url> -->

  <!-- 4. 更多页面：按 <url>...</url> 格式重复添加，包含所有你想让爬虫抓取的页面 -->
</urlset>